A website to help my dance club manage the results of the physical testings done every year. The website is using Django fully, with dynamic features done by unicorn.
- Python installed
- PostgreSQL installed
- Git (so you can clone the repo)
git clone https://github.com/DaalbuCZ/Hermes.git
cd hermes
python -m venv myenv
source myenv/bin/activate # On macOS/Linux
myenv\Scripts\activate.bat # On Windows
Install the required packages:
pip install -r requirements.txt
Edit hermes/settings.py
to ensure the database settings are correct for the target machine.
Run migrations:
python manage.py migrate
Create a superuser:
python manage.py createsuperuser
Start the Django development server:
python manage.py runserver
Access your site at http://localhost:8000
and admin dashboard at http://localhost:8000/admin