A web application for GDG Events management based on Django Framework.
Setting up the project on your local machine is very easy. Just three step installation after cloning the repository.
-
Create virtual environment by using following command:
virtualenv env
-
If you dont have virtualenv the install using the command
pip install virtualenv
-
Run the virtaulenv by
source env/bin/activate
-
Install the dependencies using the command:
pip install -r requirements.txt
-
Run migrations using the command:
python manage.py migrate
-
Run the development server:
python manage.py runserver
Note: make sure your 8000 port is free. If not, then use the following command:
python manage.py runserver port_number
Finally open http://127.0.0.1:8000(default) or http://127.0.0.1:port_number to see the magic into action.
If you want to contribute to this project, then simply:
* Fork the repository
* Clone on your machine
* Make changes
* Send Pull requests