This is a simple event registration system built with Django by Olalekan Onifade.
- Allows users to register for events.
- Displays event details.
- Manages user registrations.
-
Clone the repository:
git clone https://github.com/locustbea/Codealpha_task_1/tree/master/event_registration_system
Install dependencies:
bash
pip install -r requirements.txt
Apply migrations:
bash
python manage.py migrate
Create a superuser (admin user) to access the admin interface:
bash
python manage.py createsuperuser
Run the development server:
bash
python manage.py runserver
Access the site at http://127.0.0.1:8000/
Usage
Visit the admin interface at http://127.0.0.1:8000/admin/ to manage events and registrations.
Users can register for events by visiting the event details page.
Contributing
Fork the repository.
Create a new branch (git checkout -b feature/yourfeature).
Commit your changes (git commit -am 'Add new feature').
Push to the branch (git push origin feature/yourfeature).
Create a new Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.