Scratch space for learning atproto app development
1# Environment Configuration
2NODE_ENV="development" # Options: 'development', 'production'
3PORT="8080" # The port your server will listen on
4PUBLIC_URL="" # Set when deployed publicly, e.g. "https://mysite.com". Informs OAuth client id.
5DB_PATH="db.sqlite" # The SQLite database path. Set as ":memory:" to use a temporary in-memory database.
6
7# Secrets: *MUST* set this in production
8
9# May be generated with `openssl rand -base64 33`
10# COOKIE_SECRET=""
11
12# May be generated with `./bin/gen-jwk` (requires `npm install` once first)
13# PRIVATE_KEYS='[{"kty":"EC","kid":"123",...}]'