Projeto de Estudo do curso Welcome to the Django.
- Clone o repositório
- Crie um virtualenv com Python 3.5
- Ative o seu virtualev.
- Instale as dependências.
- Configure a instância com o .env
- Execute os testes.
git clone [email protected]:n1lux/wttd.git
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
- Crie uma instância no heroku.
- Envie as configurações para o heroku.
- Define uma SECRET_KEY segura para instância.
- Defina DEBUG=False
- Configure o serviço de email.
- Envie o código para o heroku.
heroku create minhainstancia
heroku config:push
heroku config:set SECRET_KEY=`python contrib/secret_gen.py`
heroku config:set DEBUG=False
# configuro o email
git push heroku master --force