-
Clone the repository
git clone [repository-url] -
Create a virtual environment
python3 -m venv venv -
Activate virtual environment
- Windows:
venv\Scripts\activate - Mac/Linux:
source venv/bin/activate
-
Install dependencies
pip install -r requirements.txt -
Configure MySQL Database
- Install MySQL
- The database will be the same as the one i have so we'll be adding info to itlx
- Update database settings in settings.py if needed
-
Run migrations
python manage.py migrate -
Create superuser (Optional)
python manage.py createsuperuser -
Run the server
python manage.py runserver