forked from
samuel.fm/statusphere-react
the statusphere demo reworked into a vite/react app in a monorepo
1# Environment Configuration
2NODE_ENV="development" # Options: 'development', 'production'
3PORT="3001" # The port your server will listen on
4VITE_PORT="3000" # The port the vite dev server is on (dev only)
5HOST="127.0.0.1" # Hostname for the server
6PUBLIC_URL="" # Set when deployed publicly, e.g. "https://mysite.com". Informs OAuth client id.
7DB_PATH=":memory:" # The SQLite database path. Leave as ":memory:" to use a temporary in-memory database.
8
9# Secrets
10# Must set this in production. May be generated with `openssl rand -base64 33`
11# COOKIE_SECRET=""