everything you need to create an atproto appview
at main 26 lines 657 B view raw
1# development mode (set to false for production) 2APPVIEW_DEV=true 3 4# server configuration 5APPVIEW_HOST=localhost:3000 6APPVIEW_LISTEN_ADDR=0.0.0.0:3000 7APPVIEW_NAME=ATProto Starter Kit 8 9# database 10APPVIEW_DB_PATH=appview.db 11 12# cookie secret (generate with: openssl rand -hex 32) 13APPVIEW_COOKIE_SECRET=00000000000000000000000000000000 14 15# oauth configuration 16# generate keypair with: goat keygen 17APPVIEW_OAUTH_CLIENT_SECRET=z42tjbmA9q6g99qKdyBjGHrQC7EPHwH9pDwjwG5E71PMSNJH 18APPVIEW_OAUTH_CLIENT_KID=1770996715 19 20# redis configuration 21APPVIEW_REDIS_ADDR=localhost:6379 22APPVIEW_REDIS_PASS= 23APPVIEW_REDIS_DB=1 24 25# plc directory 26APPVIEW_PLC_URL=https://plc.directory