Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 629 Bytes

README.md

File metadata and controls

21 lines (20 loc) · 629 Bytes

A python-django project based on a log-in screen, with a ragistration option. After sign in, it has a personal to-do list.

  1. Clone project
  2. Install poetry
    pip install poetry
  3. Install dependencies using poetry
    poetry install
  4. Create mysql connection,
  5. edit env vars, by creating .secrets.toml file, copy settings.toml and change the values with the data to connect the db.
  6. Run migrations in order to create db tables
    poetry run python manage.py migrate
  7. run server and verify if django is running
    poetry run python manage.py runserver