A Django-based project. Follow these steps to set it up locally.
- Python 3.x
- Git
- (Optional) virtualenv or
venv
git clone https://github.com/lasyasb/cfg25.git
cd cfg25
python3 -m venv venv
source venv/bin/activate # On Windows: `.\venv\Scripts\activate`
pip install -r requirements.txt
python manage.py collectstatic
python manage.py migrate # If migrations are needed
python manage.py runserver