Skip to content

Commit

Permalink
ci: update readme (#71)
Browse files Browse the repository at this point in the history
* feat: combining members and invites table into one

* feat: added events with rabbitmq, set up local docker

* style: cleaning up code

* ci: updating changelog

* ci: removing external volumes

* docs: update readme
  • Loading branch information
aacevski authored Feb 22, 2025
1 parent f8403cb commit 72d04b2
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,15 @@ services:
environment:
JWT_ACCESS: "change_me"
DB_PATH: "/app/apps/api/data/kaneo.db"
RABBITMQ_URL: "amqp://guest:guest@rabbitmq:5672"
ports:
- 1337:1337
restart: unless-stopped
volumes:
- sqlite_data:/app/apps/api/data
depends_on:
rabbitmq:
condition: service_healthy

frontend:
image: ghcr.io/kaneo-app/web:latest
Expand All @@ -59,9 +64,28 @@ services:
- 5173:80
depends_on:
- backend
restart: unless-stopped

rabbitmq:
image: rabbitmq:3-management
ports:
- "5672:5672"
- "15672:15672"
environment:
- RABBITMQ_DEFAULT_USER=guest
- RABBITMQ_DEFAULT_PASS=guest
volumes:
- rabbitmq_data:/var/lib/rabbitmq
healthcheck:
test: ["CMD", "rabbitmq-diagnostics", "-q", "ping"]
interval: 10s
timeout: 5s
retries: 5
restart: unless-stopped

volumes:
sqlite_data:
rabbitmq_data:
```
2. Run `docker compose up -d` to start the services.
Expand Down
2 changes: 0 additions & 2 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,5 @@ networks:
volumes:
sqlite_data:
name: kaneo_sqlite_data
external: true
rabbitmq_data:
name: kaneo_rabbitmq_data
external: true

0 comments on commit 72d04b2

Please sign in to comment.