The Wayback Machine - https://web.archive.org/web/20200926185135/https://github.com/felipefrizzo/wttd
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Eventex

System of Events create in the course Welcome to the Django.

wercker status Build Status Code Health

How to develop ?

  1. Clone the repository.

    git clone https://github.com/felipefrizzo/wttd.git wttd
    cd wttd
  2. Create a virtualenv with Python 3.5.0

    pyenv install 3.5.0
  3. Activate your virtualenv.

    pyenv virtualenv 3.5.0 wttd
    pyenv local wttd
  4. Install the dependencies.

    pip install -r requirements.txt
  5. configure the instance with .env

    cd contrib/env-sample .env
  6. Run the tests.

    python manage.py test

How to deploy ?

  1. Create a instance in heroku.

  2. Send the configurations for heroku.

  3. Set a safe SECRET_KEY for instance.

  4. Set DEBUG=False

  5. Configure the email service.

  6. Send the code for the heroku.

    heroku create MyInstance
    heroku config:push
    heroku config:set SECRET_KEY=`python contrib/secret_gen.py`
    heroku config:set DEBUG=False
    # Config email
    git push heroku master --force
You can’t perform that action at this time.