Skip to content

sembug/wttd-eventex

 
 

Repository files navigation

Eventex

Project developed during the WTTD

Build Status Code Health Code Climate

Running locally

  1. Clone the repository
  2. Create a virtualenv with Python 3.5
  3. Activate the virtualenv
  4. Install the dependencies
  5. Set up your local configuration file
  6. Run tests
git clone git@github.com:cuducos/wttd-eventex.git wttd && cd wttd
python -m venv .wttd
source .wttd/bin/activate
python -m pip install -r requirements-dev.txt
cp contrib/env-sample .env
python manage.py test

Deploying with Heroku

  1. Create a Heroku app
  2. Send your configuration variables to Heroku
  3. Define a secret key
  4. Disable debug mode
  5. Set up the mail service
  6. Push your code
heroku create your_name-eventex
heroku config:push
heroku config:set SECRET_KEY=`python contrib/secret_gen.py`
heroku config:set DEBUG=False
# config your email according to your provider settings
git push heroku master

About

Repo from the WTTD course

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 34.6%
  • CSS 30.5%
  • HTML 29.0%
  • JavaScript 5.9%