Skip to the content.

Command Line Interface

vue.py provides a command line tool vue-cli to deploy your application.

Deployment

A vue.py application can be deployed via several provider.

Get help about the available provider and their arguments

$ vue-cli deploy -h

This installs all the required packages for e.g. the flask provider

pip install vuepy[flask]

Flask

With a flask live deployment your application is accessible on http://localhost:5000.

$ vue-cli deploy flask

This is the best deployment method when debugging.

Static

With a static deployment everything your application needs, gets packaged into a single folder, which can be served by your favorite web server.

$ vue-cli deploy static <destination> --package