Example Vue application with simple Python backend server to demonstrate building Vue applications using an HTTP API as a backend.
npm run serve
will automatically proxy API requests to the python server running at localhost:8181
(see below).
npm install
npm run serve
npm run build
npm run test
npm run lint
cd server
pip3 install -r requirements.txt
waitress-serve --listen=localhost:8181 api:app
or, using gunicorn:
gunicorn -b localhost:8181 api:app --reload