Skip to content

Commit cf516c4

Browse files
authored
Create .env.example for environment setup
Added example environment configuration file for iGotify.
1 parent a8e812b commit cf516c4

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

.env.example

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# iGotify Notification Assistant - Environment Configuration
2+
#
3+
# Copy this file to .env and configure the values
4+
# Documentation: https://github.com/androidseb25/iGotify-Notification-Assistent/wiki#environment-variables
5+
6+
# ─── Required ───────────────────────────────────────────────────────
7+
# Password for the default Gotify user
8+
GOTIFY_DEFAULTUSER_PASS=my-very-strong-password
9+
10+
# ─── Connection Settings ────────────────────────────────────────────
11+
# These are ONLY required when Gotify & iGotify are NOT accessible via a public domain.
12+
# If both services are available over a domain, leave these empty.
13+
#
14+
# WARNING: If you set any of these three variables, you MUST set ALL THREE.
15+
#
16+
# Examples:
17+
# Internal: http://gotify (container name / local DNS)
18+
# External: https://mygotify.domain.tld
19+
#
20+
# For multiple instances, separate with semicolons:
21+
# GOTIFY_URLS='http://gotify;http://gotify2'
22+
# GOTIFY_CLIENT_TOKENS='cXXXXXXXX1;cXXXXXXXX2'
23+
# SECNTFY_TOKENS='NTFY-DEVICE-XXXXXX1;NTFY-DEVICE-XXXXXX2'
24+
25+
GOTIFY_URLS=
26+
GOTIFY_CLIENT_TOKENS=
27+
SECNTFY_TOKENS=
28+
29+
# ─── Optional Settings ──────────────────────────────────────────────
30+
# Enable/disable console logging (default: true)
31+
ENABLE_CONSOLE_LOG='true'
32+
33+
# Enable/disable the API endpoint page (default: true)
34+
ENABLE_SCALAR_UI='true'

0 commit comments

Comments
 (0)