https://github.com/agent-hellboy/event-notification-system
https://github.com/agent-hellboy/event-notification-system
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/agent-hellboy/event-notification-system
- Owner: Agent-Hellboy
- License: mit
- Created: 2023-10-07T13:21:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-07T13:44:34.000Z (over 2 years ago)
- Last Synced: 2025-02-26T16:49:19.061Z (over 1 year ago)
- Language: Python
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Event-Notification-System
An event notification system written in django
## Prerequisites
Before you begin, make sure you have the following prerequisites installed on your system:
- [Python](https://www.python.org/downloads/): You need Python installed to run the application.
- [pip](https://pip.pypa.io/en/stable/installation/): The Python package manager.
## Usage
1. **Clone the Repository**
Clone this repository to your local machine using Git:
```bash
git clone https://github.com/Agent-Hellboy/event-notification-system.git
2. **Install the requirements**
```py
cd event-notification-system
pip install -r requirements.txt
3. **Run db migration commands**
```py
python3 manage.py makemigrations
python3 manage.py migrate
3. **Populate db with dummy data**
```py
python3 manage.py populate_tables
4. **Run server**
```py
python3 manage.py runserver
5. **Test application**
```py
python3 manage.py test