Eventex

Repositório de estudo do projeto realizado no curso Welcome to the Django

Como instalar?

  1. Faça o clone do repositório;
git clone git@github.com:brunobbbs/eventex.git wttd
cd wttd/
  1. Crie um virtualenv com Python 3.5
python -m venv .wttd
  1. Ative o virtualenv
source .wttd/bin/activate
  1. Instale as dependências do projeto;
pip install -r requirements-dev.txt
  1. Configure a instância com .env
cp contrib/env-sample .env
  1. Execute os testes
python manage.py test