Each user has the ability to create and pass other peoples tests.
Technology stack:
- Python 3.6
- Django 4.0+
- SQLite 3.22+
Project setup instruction:
- Download in ZIP or clone this repository
- Install required Python libraries:
pip install -r requirements.txt
- Create unique app key
python manage.py shell -c "from django.core.management.utils import get_random_secret_key; get_random_secret_key()"
- Synchronize database structure with models:
python manage.py migrate
- Launch the site using the command:
python manage.py runserver 8000