docs: Add WEB_APP_URL and WEBHOOK_URL to configuration

This commit is contained in:
Faruk AYDIN
2022-12-17 00:54:49 +03:00
parent 02a76418fc
commit 1f80f843ba

View File

@@ -14,26 +14,28 @@ The default values for some environment variables might be different in our deve
Please be careful with the `ENCRYPTION_KEY` and `WEBHOOK_SECRET_KEY` environment variables. They are used to encrypt your credentials from third-party services and verify webhook requests. If you change them, your existing connections and flows will not continue to work. Please be careful with the `ENCRYPTION_KEY` and `WEBHOOK_SECRET_KEY` environment variables. They are used to encrypt your credentials from third-party services and verify webhook requests. If you change them, your existing connections and flows will not continue to work.
::: :::
| Variable Name | Type | Default Value | Description | | Variable Name | Type | Default Value | Description |
| --------------------------- | ------- | ------------------ | --------------------------------------------- | | --------------------------- | ------- | ------------------ | ---------------------------------------------------- |
| `HOST` | string | `localhost` | HTTP Host | | `HOST` | string | `localhost` | HTTP Host |
| `PROTOCOL` | string | `http` | HTTP Protocol | | `PROTOCOL` | string | `http` | HTTP Protocol |
| `PORT` | string | `3000` | HTTP Port | | `PORT` | string | `3000` | HTTP Port |
| `APP_ENV` | string | `production` | Automatisch Environment | | `APP_ENV` | string | `production` | Automatisch Environment |
| `POSTGRES_DATABASE` | string | `automatisch` | Database Name | | `WEB_APP_URL` | string | | Can be used to override connection URLs and CORS URL |
| `POSTGRES_PORT` | number | `5432` | Database Port | | `WEBHOOK_URL` | string | | Can be used to override webhook URL |
| `POSTGRES_HOST` | string | `postgres` | Database Host | | `POSTGRES_DATABASE` | string | `automatisch` | Database Name |
| `POSTGRES_USERNAME` | string | `automatisch_user` | Database User | | `POSTGRES_PORT` | number | `5432` | Database Port |
| `POSTGRES_PASSWORD` | string | | Password of Database User | | `POSTGRES_HOST` | string | `postgres` | Database Host |
| `ENCRYPTION_KEY` | string | | Encryption Key to store credentials | | `POSTGRES_USERNAME` | string | `automatisch_user` | Database User |
| `WEBHOOK_SECRET_KEY` | string | | Webhook Secret Key to verify webhook requests | | `POSTGRES_PASSWORD` | string | | Password of Database User |
| `APP_SECRET_KEY` | string | | Secret Key to authenticate the user | | `ENCRYPTION_KEY` | string | | Encryption Key to store credentials |
| `REDIS_HOST` | string | `redis` | Redis Host | | `WEBHOOK_SECRET_KEY` | string | | Webhook Secret Key to verify webhook requests |
| `REDIS_PORT` | number | `6379` | Redis Port | | `APP_SECRET_KEY` | string | | Secret Key to authenticate the user |
| `REDIS_USERNAME` | string | `` | Redis Username | | `REDIS_HOST` | string | `redis` | Redis Host |
| `REDIS_PASSWORD` | string | `` | Redis Password | | `REDIS_PORT` | number | `6379` | Redis Port |
| `REDIS_TLS` | boolean | `false` | Redis TLS | | `REDIS_USERNAME` | string | | Redis Username |
| `TELEMETRY_ENABLED` | boolean | `true` | Enable/Disable Telemetry | | `REDIS_PASSWORD` | string | | Redis Password |
| `ENABLE_BULLMQ_DASHBOARD` | boolean | `false` | Enable BullMQ Dashboard | | `REDIS_TLS` | boolean | `false` | Redis TLS |
| `BULLMQ_DASHBOARD_USERNAME` | string | | Username to login BullMQ Dashboard | | `TELEMETRY_ENABLED` | boolean | `true` | Enable/Disable Telemetry |
| `BULLMQ_DASHBOARD_PASSWORD` | string | | Password to login BullMQ Dashboard | | `ENABLE_BULLMQ_DASHBOARD` | boolean | `false` | Enable BullMQ Dashboard |
| `BULLMQ_DASHBOARD_USERNAME` | string | | Username to login BullMQ Dashboard |
| `BULLMQ_DASHBOARD_PASSWORD` | string | | Password to login BullMQ Dashboard |