This repository was archived by the owner on Jul 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (31 loc) · 1.64 KB
/
Copy path.env.example
File metadata and controls
36 lines (31 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Appsmith CE Environment Variables
# Copy this file to .env and fill in the values
#
# Image: appsmith/appsmith-ce:latest
# Docs: https://docs.appsmith.com/getting-started/setup/installation-guides/docker
# =============================================================================
# DOMAIN & ACCESS
# =============================================================================
# HTTPS domain for OAuth redirects and generated URLs
APPSMITH_CUSTOM_DOMAIN=https://appsmith.loadingtechnology.app
# Disable public signup (set to false for initial setup, then true after admin account created)
# The user matching APPSMITH_ADMIN_EMAILS becomes superadmin on first login
APPSMITH_SIGNUP_DISABLED=false
# Comma-separated admin emails — users with these emails get superuser privileges
# Example: APPSMITH_ADMIN_EMAILS=admin@example.com,ops@example.com
APPSMITH_ADMIN_EMAILS=<your_admin_emails>
# =============================================================================
# ENCRYPTION — Generate with: openssl rand -hex 16
# =============================================================================
APPSMITH_ENCRYPTION_PASSWORD=<generate_with_openssl_rand_hex_16>
APPSMITH_ENCRYPTION_SALT=<generate_with_openssl_rand_hex_16>
# =============================================================================
# OPTIONAL — Email (SMTP) for password reset / invites
# =============================================================================
# APPSMITH_MAIL_ENABLED=false
# APPSMITH_MAIL_FROM=appsmith@loadingtechnology.app
# APPSMITH_MAIL_HOST=
# APPSMITH_MAIL_PORT=587
# APPSMITH_MAIL_USERNAME=
# APPSMITH_MAIL_PASSWORD=
# APPSMITH_MAIL_SMTP_TLS_ENABLED=true