An experimental IndieWeb site built in Go.
at main 389 B view raw
1# Port for the server to listen on. 2# Change this to something you can tunnel during local development 3PORT=5050 4 5# Root URL, with protocol, where your server is accessible. 6PROFILE_URL="http://localhost/" 7 8ADMIN_USERNAME="change" 9ADMIN_PASSWORD="me" 10 11JWT_SECRET="bogus" 12 13AWS_ACCESS_KEY_ID= 14AWS_SECRET_ACCESS_KEY= 15AWS_S3_BUCKET_NAME= 16AWS_S3_ENDPOINT=fly.storage.tigris.dev 17AWS_REGION=auto