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
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,14 @@ pip install -r requirements/local.txt

#### Helpful Commands

##### Run the docker compose stack in the background
##### Run the Docker compose stack in the background

docker compose up -d

##### Rebuild Docker images

docker compose build

##### Watch the logs of Django & the backend workers

docker compose logs -f django celeryworker
Expand Down Expand Up @@ -324,6 +328,7 @@ Antenna supports remote debugging with debugpy for both Django and Celery servic

### Troubleshooting

- **Problems after pull**: If Dockerfiles or dependencies have been updated, make sure to rebuild the Docker images: `docker compose build`. For source code changes, this is not needed.
- **Connection refused**: Make sure you copied `docker-compose.override-example.yml` to `docker-compose.override.yml`
- **Debugger not stopping**: Verify breakpoints are set in code that actually executes
- **Port conflicts**: Check that ports 5678 and 5679 aren't already in use on your host machine
Expand Down