Skip to content

MorgueMorg/Recipes-Web-Blog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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