/anime_store

My portfolio project. Anime store in Django

Primary LanguageHTMLMIT LicenseMIT

Anime Store

My portfolio project. Anime store in Django

Home-page

Products

Products

Product detail

Detail

Development

System dependencies

  • python 3.8
  • Django 3.2.8
  • psycopg2-binary 2.9.1
  • environs 9.3.4
  • Pillow 8.4.0

Setup environment

  • Rename .env.dist to .env
  • Fill in your data
  • SECRET_KEY is needed to secure sessions on the client side
  • PG_NAME - database name
  • PG_HOST is responsible for where your database is located
  • PG_USER and PG_PASSWORD are needed to access the database

Launch

  • git clone https://github.com/waydk/anime_store
  • cd 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