Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 583 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 583 Bytes

Cook Blog

Development tools

Stack:

  • Python >= 3.8.9
  • Django >= 3...
  • Sqlite3

Installation

1) Clone the repository

git clone <repository link>

2) Create a virtual environment

python -m venv venv

3) Activate the virtual environment

. venv/bin/activate

4) Install dependencies:

pip install -r req.txt

5) Run the command to perform migrations

python manage.py migrate

6) Create a superuser

python manage.py createsuperuser

7) Run the server

python manage.py runserver