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