Event system ordered by Morena.
- Clone this repo.
- Create a virtualenv with python 3.6.
- Activate the virtualenv created on step before.
- Install the dependencies.
- Configure your dev instance with a .env file
- Run tests.
git clone [email protected]:joaopcanario/eventex.git eventex
cd eventex
python -m venv .eventex
source .eventex/bin/activate
pip install -r requirements-dev.txt
cp contrib/env-sample .env
python manage.py test
- Create an app on Heroku.
- Send configurations to Heroku.
- Set a safe SECRET_KEY to your app.
- Set DEBUG=False.
- Configure the mail service.
- Send the code to Heroku.
heroku create myapp
heroku config:push
heroku config:set SECRET_KEY=`python contrib/secret_gen.py`
heroku config:set DEBUG=False
# configure email (e.g.: sendgrid)
git push heroku master --force