Wireframes, visual language guidelines, mockups are HERE
python -m venv .venv
source .venv/bin/activate
.venv\Scripts\activate
pip install django
python -m django --version
pip install Pillow
python -m pip install pillow
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
Note: if you are on mac you might need to use python3
or pip3
We were following Django general architecture with separating views according its function in the logic (authentication.py - login, sign up, sign out, cards.py - all manipulations with cards data, admin_panel.py - all manipulations with admin logic)