Live: Demo
Used Tech Stack
- Django
 - Sqlite
 
- 
Create a virtual environment
virtualenv venvOr
python3.11 -m venv venv - 
Activate it
source venv/bin/activate - 
Clone the repository and install the packages in the virtual env:
pip install -r requirements.txt - 
Add
.envfile.cp .env.dev.sample .env - 
Add Github client ID and client secret in the
.envfile 
- 
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 fixtures/app_name_initial_data.json --app app.model_name - 
Run server:
python manage.py runserver - 
Default django admin credentials:
email: admin@admin.compassword: admin 
python manage.py test
python manage.py dumpdata --format=json --indent 4 app_name > app_name/fixtures/app_name_initial_data.json
Show your support by 🌟 the project!!







