flora is a fast and secure runtime that lets you write discord bots for your servers, with a rich TypeScript SDK, without worrying about running infrastructure. [mirror]
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at c71d2aad7d48d60cc8c4cef21d693a4c2d7f8a41 22 lines 413 B view raw
1services: 2 postgres-dev: 3 image: postgres:15 4 environment: 5 POSTGRES_DB: flora 6 POSTGRES_USER: user 7 POSTGRES_PASSWORD: pass 8 ports: 9 - '5433:5432' 10 volumes: 11 - postgres_dev_data:/var/lib/postgresql/data 12 13 valkey-dev: 14 image: valkey/valkey:latest 15 ports: 16 - '5434:6379' 17 volumes: 18 - valkey_dev_data:/data 19 20volumes: 21 postgres_dev_data: 22 valkey_dev_data: