Mirror from bluesky-social/pds

update default to sqlite

dholms b0f80b6c cff2d268

+13 -13
+13 -13
README.md
··· 164 164 165 165 | Environment Variable | Value | Should update? | Notes | 166 166 | ----------------------------------------- | --------------------------------------------- | -------------- |------ | 167 - | PDS_HOSTNAME | example.com | ✅ | Public domain you intend to deploy your service at | 168 - | PDS_DB_POSTGRES_URL | postgresql://user:password@host:port/database | ✅ | Or use `PDS_DB_SQLITE_LOCATION` depending on which database you intend to use | 169 - | PDS_JWT_SECRET | jwt-secret | ✅ | Use a secure high-entropy string | 170 - | PDS_ADMIN_PASSWORD | admin-pass | ✅ | Use a secure high-entropy string | 171 - | PDS_REPO_SIGNING_KEY_K256_PRIVATE_KEY_HEX | 3ee68... | ✅ | See above Generate Keys section - once set, do not change | 172 - | PDS_PLC_ROTATION_KEY_K256_PRIVATE_KEY_HEX | e049f... | ✅ | See above Generate Keys section - once set, do not change | 173 - | LOG_ENABLED | true | ❔ | Outputs structured logs to stdout | 174 - | PDS_BLOBSTORE_DISK_LOCATION | blobs | ❌ | Only update if you update the mounted volume for your docker image as well | 175 - | PDS_DID_PLC_URL | plc.bsky-sandbox.dev | ❌ | Do not adjust if you intend to federate with the Bluesky federation sandbox | 176 - | PDS_BSKY_APP_VIEW_ENDPOINT | api.bsky-sandbox.dev | ❌ | Do not adjust if you intend to federate with the Bluesky federation sandbox | 177 - | PDS_BSKY_APP_VIEW_DID | did:web:api.bsky-sandbox.dev | ❌ | Do not adjust if you intend to federate with the Bluesky federation sandbox | 178 - | PDS_CRAWLERS | bgs.bsky-sandbox.dev | ❌ | Do not adjust if you intend to federate with the Bluesky federation sandbox | 179 - | ... | ... | | | 167 + | PDS_HOSTNAME | example.com | ✅ | Public domain you intend to deploy your service at | 168 + | PDS_DB_SQLITE_LOCATION | pds.sqlite | ✅ | Or use `PDS_DB_POSTGRES_URL` depending on which database you intend to use | 169 + | PDS_JWT_SECRET | jwt-secret | ✅ | Use a secure high-entropy string | 170 + | PDS_ADMIN_PASSWORD | admin-pass | ✅ | Use a secure high-entropy string | 171 + | PDS_REPO_SIGNING_KEY_K256_PRIVATE_KEY_HEX | 3ee68... | ✅ | See above Generate Keys section - once set, do not change | 172 + | PDS_PLC_ROTATION_KEY_K256_PRIVATE_KEY_HEX | e049f... | ✅ | See above Generate Keys section - once set, do not change | 173 + | LOG_ENABLED | true | ❔ | Outputs structured logs to stdout | 174 + | PDS_BLOBSTORE_DISK_LOCATION | blobs | ❌ | Only update if you update the mounted volume for your docker image as well | 175 + | PDS_DID_PLC_URL | plc.bsky-sandbox.dev | ❌ | Do not adjust if you intend to federate with the Bluesky federation sandbox | 176 + | PDS_BSKY_APP_VIEW_ENDPOINT | api.bsky-sandbox.dev | ❌ | Do not adjust if you intend to federate with the Bluesky federation sandbox | 177 + | PDS_BSKY_APP_VIEW_DID | did:web:api.bsky-sandbox.dev | ❌ | Do not adjust if you intend to federate with the Bluesky federation sandbox | 178 + | PDS_CRAWLERS | bgs.bsky-sandbox.dev | ❌ | Do not adjust if you intend to federate with the Bluesky federation sandbox | 179 + | ... | ... | | | 180 180 181 181 There are additional environment variables that can be tweaked depending on how you're running your service. For instance, storing blobs in AWS S3, keys in AWS KMS, or setting up an email service. 182 182