Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 531 Bytes

README.md

File metadata and controls

38 lines (31 loc) · 531 Bytes

installing

1.clone repository

git clone [email protected]:danialsadri/eshop_project.git

2.change directory

cd eshop_project

3.setup virtualenv

python3 -m venv venv
source venv/bin/activate

4.install packages

pip install -r requirements.txt

5.make migrations & migrate

python manage.py makemigrations
python manage.py migrate

6.create superuser

python manage.py createsuperuser

7.start server

python manage.py runserver