A python-django project based on a log-in screen, with a ragistration option. After sign in, it has a personal to-do list.
- Clone project
- Install poetry
pip install poetry
- Install dependencies using poetry
poetry install
- Create mysql connection,
- edit env vars, by creating .secrets.toml file, copy settings.toml and change the values with the data to connect the db.
- Run migrations in order to create db tables
poetry run python manage.py migrate
- run server and verify if django is running
poetry run python manage.py runserver