diff --git a/frontend-modern/src/components/Settings/QuickSecuritySetup.tsx b/frontend-modern/src/components/Settings/QuickSecuritySetup.tsx index cabbfe8ec..8d4aad598 100644 --- a/frontend-modern/src/components/Settings/QuickSecuritySetup.tsx +++ b/frontend-modern/src/components/Settings/QuickSecuritySetup.tsx @@ -239,10 +239,35 @@ Important:
-

- Next steps: You'll need to restart Pulse with these environment variables set. - See the documentation for systemd or Docker configuration. +

+ To activate these credentials:

+
+
+

For systemd (most common):

+
+sudo systemctl edit pulse-backend
+
+# Add these lines:
+[Service]
+Environment="PULSE_AUTH_USER={credentials()!.username}"
+Environment="PULSE_AUTH_PASS={credentials()!.password}"
+Environment="API_TOKEN={credentials()!.apiToken}"
+
+# Save and exit, then:
+sudo systemctl restart pulse-backend
+
+ +
+

For Docker:

+
+docker run -d \
+  -e PULSE_AUTH_USER={credentials()!.username} \
+  -e PULSE_AUTH_PASS={credentials()!.password} \
+  -e API_TOKEN={credentials()!.apiToken} \
+  rcourtman/pulse:latest
+
+