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
The Prime CLI lets you easily configure your Commercial Edition instance, providing options to customize the PostgreSQL database, Redis, external storage, and other advanced settings.
tar -xvzf podman-quadlets.tar.gz -C podman-quadlets
45
45
```
46
46
47
47
The directory contains an `install.sh` script that will handle the installation and configuration.
@@ -67,6 +67,23 @@ This installs Plane in `/opt/plane`, which is a standard system location.
67
67
Systemd configurations are installed in`~/.config/containers/systemd/`
68
68
:::
69
69
70
+
## Configure external services (optional)
71
+
72
+
If you use external services fordatabase, Redis, RabbitMQ, OpenSearch, or object storage (MinIO/S3), edit `plane.env`in your Plane installation directory (e.g. `/opt/plane` or your custom path from `--base-dir`) before starting services.
73
+
See [Environment variables](/self-hosting/govern/environment-variables) for more details.
74
+
75
+
- **Database** — In the **DB SETTINGS** section, set`DATABASE_URL` or individual variables (`PGHOST`, `POSTGRES_USER`, `POSTGRES_PASSWORD`, `POSTGRES_DB`, `POSTGRES_PORT`).
76
+
77
+
- **Redis** — In the **REDIS SETTINGS** section, set`REDIS_URL` or `REDIS_HOST` and `REDIS_PORT`.
78
+
79
+
- **RabbitMQ** — Set `AMQP_URL` (e.g. `amqp://username:password@your-rabbitmq-host:5672/vhost`).
80
+
81
+
- **OpenSearch** — Set `OPENSEARCH_ENABLED=1`, `OPENSEARCH_URL`, and optionally `OPENSEARCH_USERNAME` and `OPENSEARCH_PASSWORD`. See [Configure OpenSearch for advanced search](/self-hosting/govern/advanced-search).
82
+
83
+
- **MinIO / S3** — In the **DATA STORE SETTINGS** section, set`USE_MINIO=0`for external S3, thenset`AWS_REGION`, `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, `AWS_S3_ENDPOINT_URL`, and `AWS_S3_BUCKET_NAME`.
84
+
85
+
After editing `plane.env`, start or restart services as described in [Start Plane](#start-plane) so the changes take effect.
0 commit comments