To get started:
- Follow instructions in example.env
- Run
npm install
from this folder - Run
python -m pip install -r requirements.txt
- Use python3
- You may use a venv.
To run in development mode:
- Set FLASK_ENV to development in .env
python -m flask run
ng serve
- navigate to http://localhost:5000 (or whatever your flask instance is)
To run in production mode:
- Set FLASK_ENV to production in .env
ng build --prod
npm start
- navigate to http://localhost:8000 (or whatever your flask instance is)