Events & Conferences Web app. Developed using Django.
Demo: https://eventex-diegoubirajara.herokuapp.com
- Clone the repository.
- Create a virtualenv with Python 3
- Activate the virtualenv.
- Install the dependencies.
- Set up your local configuration file .env
- Run tests.
git clone [email protected]:dubirajara/eventex-WTTD.git wttd
cd wttd
python -m venv .wttd
source .wttd/bin/activate
pip install -r requirements-dev.txt
cp contrib/env-sample .env
python manage.py test
- Create a Heroku app.
- Send your configuration variables to Heroku.
- Define a secret key.
- Disable debug mode.
- Config email service.
- Push your code.
heroku create myinstance
heroku config:push
heroku config:set SECRET_KEY=`python contrib/secret_gen.py`
heroku config:set DEBUG=False
#config your email
git push heroku master --force