Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/website/backend.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,17 @@ $ yapf -ir itdagene # Fix code formatting
$ tox -e isort -e flake8 -e yapf # Verify code style
```

### Shell

For testing purposes, it is sometimes useful to enter the server_shell

```bash
$ ssh [email protected]
$ docker exec -t <itdagene container> sh
$ python manage.py shell_plus
$ print(User.objects.get(username="<username>")) # Tip
```

## Celery

```bash
Expand Down