WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
4
fork

Configure Feed

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

feat: add docker-compose.sqlite.yml for SQLite deployments

Malpercio b496a176 9cda5a8d

+23
+23
docker-compose.sqlite.yml
··· 1 + # docker-compose for SQLite deployments (no external database required). 2 + # 3 + # Usage: 4 + # docker compose -f docker-compose.sqlite.yml up 5 + # 6 + # The existing docker-compose.yml (PostgreSQL) is unchanged. 7 + services: 8 + appview: 9 + build: . 10 + environment: 11 + DATABASE_URL: file:/data/atbb.db 12 + NODE_ENV: production 13 + env_file: 14 + - .env 15 + volumes: 16 + - atbb_data:/data 17 + ports: 18 + - "80:80" 19 + restart: unless-stopped 20 + 21 + volumes: 22 + atbb_data: 23 + driver: local