This is an app that allows a a user to create events and invite trusted family and friends to participate in the event. The app will send an email, or text if signing up for that service, to invite them to participate.
In order to run this app you will need to have Python installed with a virtual environment created and activated. If not sure how, you can find out here.
With the virtual environment activated, type:
pip install -r requirements.txt
into your terminal. Once the dependencies are installed you will need to instruct Django to create the database, type:
python manage.py makemigrations
python manage.py migrate
Now that the database is created, you can start the app with:
python manage.py runserver
You should now see the url displayed as hyperlink in terminal. Click to open browser.
