The moderator for Discrete Mathematics contests. Implemented in Django.
To run the code, you can either use docker to build and run or run it locally.
The docker repo of the project is found at: ghcr.io/papasinku/dmcb. To use the docker installation, first make sure you have docker installed on your system, then simply run:
docker run --rm -p 8000:8000 -it ghcr.io/papasinku/dmcb
Then you can access the website at http://localhost:8000/
First install the requirements, then run the following commands:
cd dmcb
python3 manage.py runserver
Then you can access the website at http://localhost:8000/
To install the requirements, run the following command:
pip install -r requirements.txt
To reformat the code, run the following command:
black dmcb