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 4HOST="localhost" # Hostname for the server 5PUBLIC_URL="" # Set when deployed publicly, e.g. "https://mysite.com". Informs OAuth client id. 6DB_PATH=":memory:" # The SQLite database path. Leave as ":memory:" to use a temporary in-memory database. 7 8# Secrets 9# Must set this in production. May be generated with `openssl rand -base64 33` 10# COOKIE_SECRET=""