Single Page App with Flask and Vue.js
Check out the tutorial.
Fork/Clone
Run the server-side Flask app in one terminal window:
$ cd server
$ python3 -m venv env
$ source env/bin/activate
(env)$ pip install -r requirements.txt
(env)$ flask run --port=5001 --debug
Navigate to http://localhost:5001
Run the client-side Vue app in a different terminal window:
$ cd client
$ npm install
$ npm run dev
Navigate to http://localhost:5173