To set up the project, you must have Python 3 or higher installed, as well as pip if it was not included in your install.
- Install poetry
py -m pip install poetry- Run poetry on the project
py -m poetry install- Be sure to have a
.envfile containing the following
FLASK_ENV=development
SECRET_KEY=something that is the secret key
Forgetting to add these files may lead to an unstable project.
This should install all required dependencies for the project, to run it, just enter
flask run
If you wish to add a dependency, be sure to add them using poetry so this updates the .tomnl and .lock file.
py -m poetry add (module-name-here)