EventEase empowers events creation process by granting you access to a comprehensive suite of booking services, eliminating the need to juggle multiple vendors. From finding the perfect venue and caterer to securing a DJ and other amenities, EventEase streamlines the entire event planning process, saving you time and effort.
To integrate with the EventEase API, you'll need to install postgreSQL using their official website : https://www.postgresql.org/download/
install Python on your system. You can typically find installation instructions on the official Python website: https://www.python.org/downloads/ Once you have Python set up, proceed with creating virtual environment.
create a virtual environment on windows using:
python -m venv <environment_name>then activate the venv
<name-of-your-env>\Scripts\activate.batclone the repo
git clone https://github.com/noone-m/EventEase.gitinstall required dependencies
pip install -r requirements.txtCreate a new database:
createdb exampledbImport the schema:
psql -U yourusername -d exampledb -f schema.sqlImport the data:
psql -U yourusername -d exampledb -f data.sqlImportant Note:
Your Django project relies on environment variables for secure operation. You'll need to create a .env file in your project's root directory to configure these variables.
1. Create a .env File:
Using a text editor, create a new file named .env in the root directory of your project. This file should not be added to version control (e.g., Git).
2. copy .env.example to .env then fill variables with your specific values.
launch the development server
py manage.py runserver