Many musical bands, opera singers, or any kind of event organisers are looking for a website to list their events on, as they want to reach a wider audience who are also looking for events to participate in. This platform allows easier listing of their event on the website along with a easier management of the events.
To run ETMS, please ensure that your system meets the following requirements:
- Operating System: Windows, macOS, or Linux
- Docker / Docker desktop
- Please install Docker desktop: https://www.docker.com/products/docker-desktop/
- Make sure to clone this ETMS project
Once Docker / Docker desktop is installed, make sure to navigate to where docker-compose.yml file is located to run the project using this command:
docker compose up -d --build Make sure to run the project container.
Once the container is up and running, navigate to where python-backend folder is located to create a superuser:
docker-compose exec web python3 manage.py createsuperuserThe command will ask for your username and password, which allow you to access Django admin panel.
Access the application at:
//localhost:3000/login To stop the container and the application run:
docker compose down