Live: Demo or Second Demo
Used Tech Stack
- Django
- Sqlite
-
Create a virtual environment
virtualenv venv
Or
python3.8 -m venv venv
-
Activate it
source venv/bin/activate
-
Install the packages in the virtual env:
pip install -r requirements.txt
-
Add
.env
file.cp .env.dev.sample .env
With the venv activate it, execute:
python manage.py collectstatic
Note : Collect static is not necessary when debug is True (in dev mode)
Create initial database:
python manage.py migrate
Load demo data (optional):
python manage.py loaddata demo
Run server:
python manage.py runserver 0.0.0.0:8000
Show your support by 🌟 the project!!