Skip to content

Commit

Permalink
Update tox testing and docs
Browse files Browse the repository at this point in the history
Switches to using pyproject.toml and drops poetry
  • Loading branch information
user authored and nickmoreton committed Feb 23, 2024
1 parent c7a4b61 commit 7c47503
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 1,158 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,12 +195,15 @@ The test app can be run to develop your contribution.
1. Fork the repo and clone it to your computer.
2. Change to the folder where you cloned it to.

With [poetry](https://python-poetry.org) installed run:
Set up a virtual environment and install the dependencies.

```bash
python -m venv .venv
source .venv/bin/activate
pip install -e ".[development]"
```

```bash
poetry install
poetry shell
# run the migrations, add an admin account and start the app
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
Expand Down
Loading

0 comments on commit 7c47503

Please sign in to comment.