- Python and Django best practices
- Continuous delivery: Project is deployed to Heroku after each commit
- TDD: tests come before code
- Delivering real value: All improvements come from 'client' demands
- See the deployed project
Sistema de Eventos encomendado pela Morena. (Programa Welcome to The Django)
- Clone o repositório
- Crie um virtualenv com Python 3.6
- Ative o virtualenv
- Instale as dependências
- Configure a instância com o .env
- Execute os testes
git clone [email protected]:felipefreitag/eventex.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
- Crie uma instância no heroku
- Envie as configurações para o heroku
- Defina uma SECRET_KEY segura para a 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
#configura o email
git push heroku master --force