You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/configuration/environment-variables.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ The following environment variables allow you to configure your Sourcebot deploy
19
19
|`DATA_CACHE_DIR`|`$DATA_DIR/.sourcebot`| <p>The root data directory in which all data written to disk by Sourcebot will be located.</p> |
20
20
|`DATA_DIR`|`/data`| <p>The directory within the container to store all persistent data. Typically, this directory will be volume mapped such that data is persisted across container restarts (e.g., `docker run -v $(pwd):/data`)</p> |
21
21
|`DATABASE_DATA_DIR`|`$DATA_CACHE_DIR/db`| <p>The data directory for the default Postgres database.</p> |
22
-
|`DATABASE_URL`|`postgresql://postgres@ localhost:5432/sourcebot`| <p>Connection string of your Postgres database. By default, a Postgres database is automatically provisioned at startup within the container.</p><p>If you'd like to use a non-default schema, you can provide it as a parameter in the database url</p> |
22
+
|`DATABASE_URL`|`postgresql://postgres@ localhost:5432/sourcebot`| <p>Connection string of your Postgres database. By default, a Postgres database is automatically provisioned at startup within the container.</p><p>If you'd like to use a non-default schema, you can provide it as a parameter in the database url.</p><p>You can also use `DATABASE_HOST`, `DATABASE_USERNAME`, `DATABASE_PASSWORD`, `DATABASE_NAME`, and `DATABASE_ARGS` to construct the database url.</p> |
23
23
|`EMAIL_FROM_ADDRESS`|`-`| <p>The email address that transactional emails will be sent from. See [this doc](/docs/configuration/transactional-emails) for more info.</p> |
24
24
| `FORCE_ENABLE_ANONYMOUS_ACCESS` | `false` | <p>When enabled, [anonymous access](/docs/configuration/auth/access-settings#anonymous-access) to the organization will always be enabled</p>
25
25
|`REDIS_DATA_DIR`|`$DATA_CACHE_DIR/redis`| <p>The data directory for the default Redis instance.</p> |
0 commit comments