My portfolio project. Anime store in Django
- python 3.8
- Django 3.2.8
- psycopg2-binary 2.9.1
- environs 9.3.4
- Pillow 8.4.0
- Rename .env.dist to .env
- Fill in your data
SECRET_KEYis needed to secure sessions on the client sidePG_NAME- database namePG_HOSTis responsible for where your database is locatedPG_USER and PG_PASSWORDare needed to access the database
git clone https://github.com/waydk/anime_storecd anime_store- If you don't have poetry
pip install poetry - Install dependencies:
poetry install - Activate the virtual environment
poetry shell - Creating migrations
python manage.py makemigrations store - Migration
python manage.py migrate - Creating a superuser
python manage.py createsuperuser - Launching an application
python manage.py runserver


