- 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.
- Execute o runserver.
git clone [email protected]:RedeNeural/site.git
cd site
virtualenv env --python=python3 # python 3.6 ou mais atual
source env/bin/activate
pip install -r requirements_dev.txt
cp contrib/env-sample .env
coverage run --source='.' manage.py test -v 1 -n ; coverage report --show-missing
python manage.py runserver
pre-commit install
flake8 --config=.flake8
python manage.py compilemessages --locale pt_BR