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
@@ -106,112 +106,37 @@ All servers are provisioned via Terraform and connected via Tailscale VPN. They
106
106
107
107
## Initial Setup
108
108
109
-
All configuration is consolidated into environment-specific files with predefined values. You only need to fill in sensitive values (passwords, certificate paths).
109
+
All configuration is consolidated into environment-specific files with predefined values. You only need to fill in sensitive values at the top of each config file.
110
110
111
-
### 1. Configure Hoodi Environment
111
+
### Configure Environment
112
112
113
-
Edit `playbooks/ini/config-hoodi.ini`:
113
+
Edit the config file for your environment:
114
+
-**Hoodi**: `playbooks/ini/config-hoodi.ini`
115
+
-**Mainnet**: `playbooks/ini/config-mainnet.ini`
114
116
115
-
All non-sensitive values are already pre-filled. You only need to set:
117
+
All non-sensitive values are already pre-filled. Fill in the required values at the top of the file:
116
118
117
119
```ini
118
-
[DEFAULT]
119
-
#... (all values pre-filled) ...
120
-
121
-
#REQUIRED: Set a strong password before deploying
120
+
# ============================================
121
+
#REQUIRED: Sensitive Values (fill these in)
122
+
# ============================================
123
+
#Database password (used by postgres, gateway, and poller)
122
124
db_password=your_secure_password_here
123
125
124
-
# REQUIRED: Same password for gateway/poller database access
125
-
gateway_db_password=your_secure_password_here
126
-
127
-
# REQUIRED: Provide local paths to your TLS certificate files
128
-
tls_cert_source_path=/path/to/your/cert.pem
129
-
tls_key_source_path=/path/to/your/key.pem
130
-
131
-
# REQUIRED: Same password for Grafana Postgres datasource
0 commit comments