-
Start the server-side flask app:
$ cd server $ python3.9 -m venv env $ source env/bin/activate (env)$ pip3 install -r requirements.txt (env)$ python3 app.py
-
Start the client-side Node server:
$ cd client $ npm i $ npm run serve
A .env file is required in the root of the project:
NODE_PORT =
FLASK_PORT =
FLASK_ENV = 'development' (defaults to production, do not set in production)
python3 cli.py