23 lines
426 B
Bash
23 lines
426 B
Bash
# REQUIRED: set the database URL
|
|
DATABASE_URL="postgres://postgres@127.0.0.1:5432/fediauth"
|
|
|
|
NODE_ENV=development
|
|
SESSION_SECRET=abc123
|
|
PORT=3000
|
|
|
|
OIDC_ISSUER=http://localhost:3000
|
|
|
|
# redirect routes to this host
|
|
# used by some alternate packager, like vite
|
|
CLIENT_HOST=http://localhost:5173
|
|
|
|
# Lemmy Polyfill
|
|
LEMMY_HOST=
|
|
LEMMY_USER=
|
|
LEMMY_PASS=
|
|
LEMMY_TOKEN=
|
|
|
|
# Mastodon & Recieve
|
|
MASTODON_HOST=
|
|
MASTODON_USER=
|
|
MASTODON_TOKEN= |