For each pre-commit error you'll lose 0.5 of each exercise score so be careful. Also, each critical error in your design and project structure costs 1 score. Try not to lose those scores.
Make sure you have Python >= 3.9 installed before following these steps.
1 - Clone the project:
git clone https://github.com/shywn-mrk/karyar-django-template.git2 - Create a virtual environment:
python -m venv env3 - Activate the virtual environment:
- Windows:
env/Scripts/activate- Mac/Linux:
source env/bin/activate4 - Install the required packages:
pip install -r requirements.txt5 - Creating migrations and migrate:
python manage.py makemigrations
python manage.py migrate6 - Create a super user:
python manage.py createsuperuser7 - Run the server:
python manage.py runserver