Django based web application for hosting Embedathon 2022
If running using Docker Containers, use the following command:
docker-compose --env-file ./embedathon_website/example.env up- If the
startscript cannot be found, ensure that theLFline endings are used (usesCRLFin Windows by default).
If building the application from scratch, use the following commands:
pip install -r requirements.txt
mysql -u <username> -p
>> create database embedathon;
>> exit;
cd embedathon_website
cp example.env .env
# fill up the .env file with your local info
python manage.py makemigrations
python manage.py migrate
python manage.py runserver
# open localhost:8000 on your browser