Skip to content
Open
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ Congrats! the API is working at this point, you can check:
- Docs: http://localhost:8000/docs
- Admin: http://localhost:8000/admin
- RabbitMQ: http://localhost:15672/
- Celery Flower: http://localhost:5555/

For admin, use:
```shell
Expand Down Expand Up @@ -259,7 +260,7 @@ pulumi up
### Monitoring
- [ ] Add logging
- [ ] Add Sentry
- [ ] Add Flower
- [x] Add Flower

### Testing
- [ ] Integrity tests
Expand Down
10 changes: 10 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,16 @@ services:
- redis
- rabbitmq

flower:
build: .
command: celery -A app.core.celery flower
depends_on:
- redis
- rabbitmq
- celery
ports:
- "5555:5555"

redis:
image: "redis:latest"
ports:
Expand Down
Loading