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
4DB_PATH=":memory:" # The SQLite database path. Set as ":memory:" to use a temporary in-memory database.
5# PUBLIC_URL="" # Set when deployed publicly, e.g. "https://mysite.com". Informs OAuth client id.
6# LOG_LEVEL="info" # Options: 'fatal', 'error', 'warn', 'info', 'debug'
7# PDS_URL="https://my.pds" # The default PDS for login and sign-ups
8
9# Secrets below *MUST* be set in production
10
11# May be generated with `openssl rand -base64 33`
12# COOKIE_SECRET=""
13
14# May be generated with `./bin/gen-jwk` (requires `npm install` once first)
15# PRIVATE_KEYS='[{"kty":"EC","kid":"123",...}]'