- Install dependencies
cd netomerch
pip install -r requirements-dev.txt
- Make
.env
file (you can make it based on.env.template
)
cp .env.template .env
- Please make sure to check the code before pushing
isort .
flake8 .
pytest
NB: tests use PostgreSQL, so you need to allow user to create the database:
psql -U postgres -c "ALTER USER netomerch CREATEDB;"