-
Make sure you have pipx installed.
-
Install poetry
pipx install poetry
-
Install nox
pipx install nox
-
Clone the repository:
git clone https://github.com/dldevinc/ssi-views
-
Navigate to the project root directory:
cd ssi-views
-
Install python dependencies:
poetry install ```1. Install Django without modifying `poetry.lock` file: ```shell poetry run pip install django ```1. Run test project ```shell python3 manage.py migrate python3 manage.py loaddata tests/fixtures.json python3 manage.py runserver
Django admin credentials:
admin
/admin
To run black
, isort
and flake8
:
nox -Rt style fix
To run unit tests:
nox -Rt test