A decentralized event management and credentialing system built on atproto.
1# Acudo Environment Configuration Example
2# Copy this file to .env and update values as needed
3
4# Database Configuration
5DATABASE_URL=postgres://postgres:postgres@localhost:5432/acudo
6
7# For tests (automatically used by cargo test)
8# DATABASE_URL=postgres://postgres:postgres@localhost:5432/acudo_test
9
10# Application Configuration
11EXTERNAL_BASE=localhost:3000
12HTTP_BIND_ADDRESS=0.0.0.0:3000
13HTTP_STATIC_PATH=./static
14
15# OAuth Configuration
16OAUTH_BACKEND=pds
17OAUTH_CLIENT_ID=your-client-id
18OAUTH_SIGNING_KEYS=your-signing-keys
19
20# Event Configuration
21EVENT_ATURI=at://did:example:123/community.lexicon.calendar.event/abc123
22
23# Jetstream Configuration (optional)
24ENABLE_JETSTREAM=false
25JETSTREAM_CURSOR_PATH=./jetstream-cursor.txt