The full exercicise can be found here: https://github.com/stone-payments/python-dev-challenge

-
Run the server-side Flask app in one terminal window:
$ cd server $ python3.7 -m venv env $ source env/bin/activate (env)$ pip install -r requirements.txt (env)$ python3 app.py
Navigate to http://localhost:5000
-
Run the client-side Vue app in a different terminal window:
$ cd client $ npm install $ npm run serveNavigate to http://localhost:8080
------ The most importants files of project ------
client: stone_exercise/client/src/components/Containers.vue
server: stone_exercise/server/app.py