forked from kossakovsky/n8n-install
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path.env.example
More file actions
1130 lines (904 loc) · 30.1 KB
/
.env.example
File metadata and controls
1130 lines (904 loc) · 30.1 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
##### Change the name of this file to .env after updating it!
############
# [required]
# flowise credentials - you set this to whatever you want, just make it a long and secure string for both!
############
FLOWISE_USERNAME=
FLOWISE_PASSWORD=
############
# [required]
# n8n credentials - you set this to whatever you want, just make it a long and secure string for both!
############
N8N_ENCRYPTION_KEY=
N8N_USER_MANAGEMENT_JWT_SECRET=
N8N_RUNNERS_AUTH_TOKEN=
N8N_RUNNERS_VERSION=
############
# [required]
# grafana credentials - you set this to whatever you want, just make it a long and secure string for both!
############
GRAFANA_ADMIN_PASSWORD=
############
# [required]
# prometheus credentials - you set this to whatever you want, just make it a long and secure string for both!
############
PROMETHEUS_USERNAME=
PROMETHEUS_PASSWORD=
############
# [required]
# searxng credentials - you set this to whatever you want, just make it a long and secure string for both!
############
SEARXNG_USERNAME=
SEARXNG_PASSWORD=
############
# [required]
# Supabase Secrets
# YOU MUST CHANGE THESE BEFORE GOING INTO PRODUCTION
# Read these docs for any help: https://supabase.com/docs/guides/self-hosting/docker
# For the JWT Secret and keys, see: https://supabase.com/docs/guides/self-hosting/docker#generate-api-keys
# For the other secrets, see: https://supabase.com/docs/guides/self-hosting/docker#update-secrets
# You can really decide any value for POOLER_TENANT_ID like 1000.
# Note that using special symbols (like '%') can complicate things a bit for your Postgres password.
# If you use special symbols in your Postgres password, you must remember to percent-encode your password later if using the Postgres connection string, for example, postgresql://postgres.projectref:p%3Dword@aws-0-us-east-1.pooler.supabase.com:6543/postgres
############
POSTGRES_PASSWORD=
############
# [optional]
# PostgreSQL Version Configuration
# Default: 17 (automatically set in docker-compose.yml)
# WARNING: Do not change to 'latest' or upgrade without proper migration!
# Major version upgrades (e.g., 17->18) require database migration.
# See README for PostgreSQL upgrade instructions.
############
# POSTGRES_VERSION=17
# METABASE_POSTGRES_VERSION=16-alpine
# TWENTY_POSTGRES_VERSION=16-alpine
JWT_SECRET=
ANON_KEY=
SERVICE_ROLE_KEY=
DASHBOARD_USERNAME=
DASHBOARD_PASSWORD=
POOLER_TENANT_ID=1000
############
# [required]
# Weaviate username and password
############
WEAVIATE_USERNAME=
WEAVIATE_API_KEY=
############
# [required]
# Qdrant API Key
############
QDRANT_API_KEY=
############
# [required]
# Neo4j username and password
############
NEO4J_AUTH_USERNAME=neo4j
NEO4J_AUTH_PASSWORD=
############
# [required]
# Langfuse credentials
# Each of the secret keys you can set to whatever you want, just make it secure!
# For the encryption key, use the command `openssl rand -hex 32`
# openssl is available by defualt on Linux/Mac
# For Windows, you can use the 'Git Bash' terminal installed with git
############
CLICKHOUSE_PASSWORD=
MINIO_ROOT_PASSWORD=
LANGFUSE_SALT=
NEXTAUTH_SECRET=
ENCRYPTION_KEY=
LANGFUSE_INIT_PROJECT_PUBLIC_KEY=
LANGFUSE_INIT_PROJECT_SECRET_KEY=
LANGFUSE_INIT_USER_EMAIL=
LANGFUSE_INIT_USER_PASSWORD=
############
# [required]
# ComfyUI credentials - you set this to whatever you want, just make it a long and secure string for both!
############
COMFYUI_USERNAME=
COMFYUI_PASSWORD=
############
# [required for prod]
# Caddy Config
# By default listen on https://localhost:[service port] and don't use an email for SSL
# To change this for production:
# Uncomment all of these environment variables for the services you want exposed
# Note that you might not want to expose Ollama or SearXNG since they aren't secured by default
# Replace the placeholder value with the host for each service (like n8n.yourdomain.com)
# Replace internal by your email (require to create a Let's Encrypt certificate)
############
USER_DOMAIN_NAME=
BASE_DOMAIN=${USER_DOMAIN_NAME:-yourdomain.com}
N8N_HOSTNAME=n8n.yourdomain.com
WEBUI_HOSTNAME=webui.yourdomain.com
FLOWISE_HOSTNAME=flowise.yourdomain.com
BOLT_HOSTNAME=bolt.yourdomain.com
############
# [required]
# Bolt.diy credentials (for Caddy basic auth)
############
BOLT_USERNAME=
BOLT_PASSWORD=
BOLT_PASSWORD_HASH=
OPENUI_HOSTNAME=openui.yourdomain.com
DIFY_HOSTNAME=dify.yourdomain.com
SUPABASE_HOSTNAME=supabase.yourdomain.com
LANGFUSE_HOSTNAME=langfuse.yourdomain.com
SEARXNG_HOSTNAME=searxng.yourdomain.com
WEAVIATE_HOSTNAME=weaviate.yourdomain.com
NEO4J_HOSTNAME=neo4j.yourdomain.com
GRAFANA_HOSTNAME=grafana.yourdomain.com
PROMETHEUS_HOSTNAME=prometheus.yourdomain.com
PORTAINER_HOSTNAME=portainer.yourdomain.com
POSTIZ_HOSTNAME=postiz.yourdomain.com
LETTA_HOSTNAME=letta.yourdomain.com
QDRANT_HOSTNAME=qdrant.yourdomain.com
COMFYUI_HOSTNAME=comfyui.yourdomain.com
RAGAPP_HOSTNAME=ragapp.yourdomain.com
WHISPER_HOSTNAME=asr.yourdomain.com
TTS_HOSTNAME=tts.yourdomain.com
SCRIBERR_HOSTNAME=scriberr.yourdomain.com
LIBRETRANSLATE_HOSTNAME=translate.yourdomain.com
LIGHTRAG_HOSTNAME=lightrag.yourdomain.com
PERPLEXICA_HOSTNAME=perplexica.yourdomain.com
ODOO_HOSTNAME=odoo.yourdomain.com
TWENTY_CRM_HOSTNAME=twenty.yourdomain.com
ESPOCRM_HOSTNAME=espocrm.yourdomain.com
MAUTIC_HOSTNAME=mautic.yourdomain.com
BASEROW_HOSTNAME=baserow.yourdomain.com
NOCODB_HOSTNAME=nocodb.yourdomain.com
VIKUNJA_HOSTNAME=vikunja.yourdomain.com
LEANTIME_HOSTNAME=leantime.yourdomain.com
CALCOM_HOSTNAME=cal.yourdomain.com
MAILPIT_HOSTNAME=mail.yourdomain.com
MAILSERVER_WEBMAIL_HOSTNAME=webmail.yourdomain.com
SNAPPYMAIL_HOSTNAME=webmail.yourdomain.com
JITSI_HOSTNAME=meet.yourdomain.com
LIVEKIT_HOSTNAME=livekit.yourdomain.com
VAULTWARDEN_HOSTNAME=vault.yourdomain.com
KOPIA_HOSTNAME=backup.yourdomain.com
KIMAI_HOSTNAME=time.yourdomain.com
INVOICENINJA_HOSTNAME=invoices.yourdomain.com
FORMBRICKS_HOSTNAME=forms.yourdomain.com
METABASE_HOSTNAME=analytics.yourdomain.com
STIRLING_HOSTNAME=pdf.yourdomain.com
CHATTERBOX_HOSTNAME=chatterbox.yourdomain.com
CHATTERBOX_FRONTEND_HOSTNAME=voice.yourdomain.com
N8N_MCP_HOSTNAME=n8nmcp.yourdomain.com
GPTR_HOSTNAME=research.yourdomain.com
SEAFILE_HOSTNAME=files.yourdomain.com
PAPERLESS_HOSTNAME=docs.yourdomain.com
OPENNOTEBOOK_HOSTNAME=notebook.yourdomain.com
WEBHOOK_TESTER_HOSTNAME=webhook-test.yourdomain.com
HOPPSCOTCH_HOSTNAME=api-test.yourdomain.com
UPTIME_KUMA_HOSTNAME=status.yourdomain.com
AIRBYTE_HOSTNAME=airbyte.yourdomain.com
PAPERLESS_GPT_HOSTNAME=paperless-gpt.yourdomain.com
PAPERLESS_AI_HOSTNAME=paperless-ai.yourdomain.com
HOMEPAGE_HOSTNAME=dashboard.yourdomain.com
OUTLINE_HOSTNAME=outline.yourdomain.com
DEX_HOSTNAME=auth.${BASE_DOMAIN}
OUTLINE_S3_HOSTNAME=outline-s3.yourdomain.com
OUTLINE_S3_ADMIN_HOSTNAME=outline-s3-admin.yourdomain.com
GITEA_HOSTNAME=git.yourdomain.com
DOCUSEAL_HOSTNAME=sign.yourdomain.com
CODESERVER_HOSTNAME=code.yourdomain.com
LETSENCRYPT_EMAIL=
# Everything below this point is optional.
# Default values will suffice unless you need more features/customization.
RUN_N8N_IMPORT=
############
# [required]
# RAGApp credentials - used for Basic Auth in Caddy
############
RAGAPP_USERNAME=
RAGAPP_PASSWORD=
#
#
#######
#####
#
############
# [required]
# LibreTranslate credentials (for Caddy basic auth)
############
LIBRETRANSLATE_USERNAME=
LIBRETRANSLATE_PASSWORD=
LIBRETRANSLATE_PASSWORD_HASH=
############
# LightRAG credentials (for Caddy basic auth)
############
LIGHTRAG_USERNAME=
LIGHTRAG_PASSWORD=
LIGHTRAG_PASSWORD_HASH=
# LightRAG API configuration
LIGHTRAG_TOKEN_SECRET=
LIGHTRAG_TOKEN_EXPIRE=24
LIGHTRAG_WORKSPACE=default
LIGHTRAG_LLM=ollama/llama3.2
LIGHTRAG_EMBEDDING=nomic-embed-text
# Internal auth for LightRAG API (username:password format)
LIGHTRAG_AUTH_ACCOUNTS=
############
# Perplexica credentials (for Caddy basic auth)
############
PERPLEXICA_USERNAME=
PERPLEXICA_PASSWORD=
PERPLEXICA_PASSWORD_HASH=
############
# Odoo ERP/CRM credentials
############
ODOO_DB_PASSWORD=
ODOO_MASTER_PASSWORD=
ODOO_USERNAME=
ODOO_PASSWORD=
ODOO_PASSWORD_HASH=
############
# Twenty CRM - Modern Customer Relationship Management
############
# Twenty CRM Database
TWENTY_CRM_DB_NAME=default
TWENTY_CRM_DB_USER=twenty
TWENTY_CRM_DB_PASSWORD=
# Twenty CRM Secrets (auto-generated)
TWENTY_CRM_APP_SECRET=
############
# EspoCRM - Full-Featured Customer Relationship Management
############
# EspoCRM Database
ESPOCRM_DB_NAME=espocrm
ESPOCRM_DB_USER=espocrm
ESPOCRM_DB_PASSWORD=
ESPOCRM_DB_ROOT_PASSWORD=
# EspoCRM Admin Account (created during first setup)
ESPOCRM_ADMIN_USERNAME=admin
ESPOCRM_ADMIN_PASSWORD=
############
# MAUTIC - Marketing Automation Platform
############
# Database Credentials
MAUTIC_DB_USER=mautic
MAUTIC_DB_PASSWORD=
MAUTIC_DB_ROOT_PASSWORD=
# Admin Credentials
MAUTIC_ADMIN_EMAIL=
MAUTIC_ADMIN_PASSWORD=
# Performance Tuning
MAUTIC_PHP_MEMORY_LIMIT=512M
MAUTIC_PHP_MAX_EXECUTION_TIME=300
############
# Baserow (Airtable Alternative)
############
BASEROW_SECRET_KEY=
############
# NocoDB - Open Source Airtable Alternative
############
# Admin credentials (auto-generated if empty)
NOCODB_ADMIN_PASSWORD=
# JWT Secret for authentication (auto-generated)
NOCODB_JWT_SECRET=
############
# Vikunja - Task Management
############
VIKUNJA_JWT_SECRET=
############
# MySQL - Database Server (auto-installed with Leantime)
############
MYSQL_ROOT_PASSWORD=
############
# Leantime - Project Management Suite
############
LEANTIME_DB_PASSWORD=
LEANTIME_SESSION_PASSWORD=
############
# Cal.com (Open Source Scheduling Platform)
############
CALCOM_NEXTAUTH_SECRET=
CALCOM_ENCRYPTION_KEY=
# Jitsi Internal Configuration
JITSI_XMPP_DOMAIN=meet.jitsi
XMPP_DOMAIN=meet.jitsi
XMPP_SERVER=jitsi-prosody
ENABLE_XMPP_WEBSOCKET=true
PUBLIC_URL= # Auto-generated from JITSI_HOSTNAME
# Authentication Passwords (Auto-generated)
JICOFO_COMPONENT_SECRET=
JICOFO_AUTH_PASSWORD=
JVB_AUTH_PASSWORD=
############################################################################
# LIVEKIT - Real-time Voice & Video Infrastructure
# Uses JWT-based authentication (API Key/Secret), NO Basic Auth needed!
############################################################################
# LiveKit Server API Credentials (auto-generated)
LIVEKIT_API_KEY=
LIVEKIT_API_SECRET=
# Note: Clients authenticate with JWT tokens generated from these credentials.
# No username/password needed - LiveKit has no web UI!
############
# Vaultwarden - Self-hosted Password Manager
############
VAULTWARDEN_ADMIN_TOKEN=
# Optional: Whitelist domains for registration (comma-separated)
SIGNUPS_DOMAINS_WHITELIST=yourdomain.com
############################################################################
# KIMAI - Professional Time Tracking
############################################################################
# Kimai Admin Account
KIMAI_ADMIN_EMAIL=
KIMAI_ADMIN_PASSWORD=
# Database Configuration
KIMAI_DB_NAME=kimai
KIMAI_DB_USER=kimai
KIMAI_DB_PASSWORD=
KIMAI_DB_ROOT_PASSWORD=
# Mail Configuration (optional)
KIMAI_MAIL_FROM=kimai@yourdomain.com
############################################################################
# INVOICE NINJA - Professional Invoicing Platform
############################################################################
# CRITICAL: Generate this BEFORE first start!
# Run: docker run --rm invoiceninja/invoiceninja:5 php artisan key:generate --show
INVOICENINJA_APP_KEY=
# Initial Admin Account (remove after first login)
INVOICENINJA_ADMIN_EMAIL=
INVOICENINJA_ADMIN_PASSWORD=
# Database Configuration
INVOICENINJA_DB_NAME=invoiceninja
INVOICENINJA_DB_USER=invoiceninja
INVOICENINJA_DB_PASSWORD=
INVOICENINJA_DB_ROOT_PASSWORD=
# Mail Settings
INVOICENINJA_MAIL_FROM=invoices@yourdomain.com
# Optional: Payment Gateway Keys
INVOICENINJA_STRIPE_KEY=
INVOICENINJA_STRIPE_SECRET=
INVOICENINJA_PAYPAL_CLIENT_ID=
INVOICENINJA_PAYPAL_SECRET=
############
# Formbricks - Open Source Survey Platform
############
FORMBRICKS_NEXTAUTH_SECRET=
FORMBRICKS_ENCRYPTION_KEY=
FORMBRICKS_CRON_SECRET=
FORMBRICKS_MAIL_FROM=forms@yourdomain.com
# Optional: Unsplash Integration for Survey Backgrounds
FORMBRICKS_UNSPLASH_ACCESS_KEY=
# Database Password for dedicated PostgreSQL with pgvector
FORMBRICKS_DB_PASSWORD=
############################################################################
# METABASE - Business Intelligence & Analytics
############################################################################
METABASE_SITE_NAME=Analytics
# Security (auto-generated)
METABASE_ENCRYPTION_KEY=
# Database Configuration
METABASE_DB_NAME=metabase
METABASE_DB_USER=metabase
METABASE_DB_PASSWORD=
# Performance
METABASE_MEMORY=1g # Increase to 2g for large datasets
# Localization
METABASE_LOCALE=en # or de, fr, es, etc.
# Mail Settings
METABASE_MAIL_FROM=analytics@yourdomain.com
# Optional: Google Auth (SSO)
METABASE_GOOGLE_AUTH_CLIENT_ID=
METABASE_GOOGLE_AUTH_DOMAIN=
# Optional: Maps
METABASE_MAPS_TILE_SERVER_URL=
############################################################################
# STIRLING-PDF - Advanced PDF Tools Suite
############################################################################
# Note: Stirling-PDF uses fixed initial credentials:
# Username: admin
# Password: stirling
# You'll be prompted to change the password on first login
# Optional Customization
STIRLING_LOCALE=de-DE
STIRLING_APP_NAME="AI LaunchKit PDF"
STIRLING_APP_DESC="Professional PDF editing"
STIRLING_ENABLE_LOGIN=true
############
# TTS Chatterbox - State-of-the-Art Text-to-Speech
# Outperforms ElevenLabs with emotion control & voice cloning
############
CHATTERBOX_API_KEY=
CHATTERBOX_DEVICE=cpu
# Options: cpu, cuda, rocm, auto
CHATTERBOX_EXAGGERATION=0.5
# Range: 0.25 to 2.0 for emotion control
CHATTERBOX_MAX_LENGTH=500
CHATTERBOX_DEFAULT_VOICE=default
CHATTERBOX_MEMORY_CLEANUP=60
# Memory cleanup interval in seconds
CHATTERBOX_CUDA_CLEANUP=120
# CUDA cache cleanup interval in seconds
############################################################################
# AI SECURITY SUITE - LLM Guard + Microsoft Presidio
# Comprehensive AI security: prompt injection protection, PII detection, GDPR compliance
# NO external access needed - internal APIs only for n8n integration
############################################################################
# LLM Guard - Prompt Injection & AI Security
# API token for authentication (auto-generated during installation)
LLM_GUARD_TOKEN=
# Logging level: DEBUG, INFO, WARNING, ERROR
LLM_GUARD_LOG_LEVEL=INFO
# Presidio - GDPR-compliant PII Detection & Anonymization
# Minimum confidence score for PII detection (0.0 - 1.0)
# Lower = more detections but more false positives
# Higher = fewer false positives but might miss some PII
PRESIDIO_MIN_SCORE=0.5
# Note: Both services run internally only (no hostnames needed)
# Access from n8n via:
# - LLM Guard: http://llm-guard:8000
# - Presidio Analyzer: http://presidio-analyzer:3000
# - Presidio Anonymizer: http://presidio-anonymizer:3000
############################################################################
# KOPIA - Fast and Secure Backup with Nextcloud WebDAV
############################################################################
# Kopia UI & Server credentials (own authentication system)
KOPIA_UI_USERNAME=admin
KOPIA_UI_PASSWORD=
# Repository encryption password (DIFFERENT from UI password!)
KOPIA_PASSWORD=
# Nextcloud WebDAV Integration
NEXTCLOUD_WEBDAV_URL=https://your.nextcloud.com/remote.php/dav/files/USERNAME/kopia-backup
NEXTCLOUD_USERNAME=your-nextcloud-username
NEXTCLOUD_APP_PASSWORD=your-nextcloud-app-password
############################################################################
# MAIL CONFIGURATION
# Mailpit runs always for development/testing
# Docker-Mailserver optional for production
############################################################################
# Mail Mode (mailpit or mailserver)
MAIL_MODE=mailpit
############
# Mailpit credentials (for Caddy basic auth)
############
MAILPIT_USERNAME=
MAILPIT_PASSWORD=
MAILPIT_PASSWORD_HASH=
# Docker-Mailserver Settings (when MAIL_MODE=mailserver)
MAILSERVER_ENABLED=false # Set to true during installation if selected
MAIL_DOMAIN=${BASE_DOMAIN}
MAIL_HOSTNAME=mail.${BASE_DOMAIN}
# Auto-generated email account for services
MAIL_NOREPLY_USER=noreply@${BASE_DOMAIN}
MAIL_NOREPLY_PASSWORD= # Auto-generated
# Universal SMTP Settings (auto-configured based on MAIL_MODE)
SMTP_HOST=mailpit
SMTP_PORT=1025
SMTP_USER=admin
SMTP_PASS=admin
SMTP_FROM=noreply@yourdomain.com
SMTP_SECURE=false
# These get auto-set for services (for compatibility)
EMAIL_SMTP_HOST=${SMTP_HOST}
EMAIL_SMTP_PORT=${SMTP_PORT}
EMAIL_SMTP_USER=${SMTP_USER}
EMAIL_SMTP_PASSWORD=${SMTP_PASS}
EMAIL_FROM=${SMTP_FROM}
EMAIL_SMTP_USE_TLS=${SMTP_SECURE}
# Mailpit Settings
MAILPIT_MAX_MESSAGES=5000
MAILPIT_UI_AUTH_FILE=
############
# Speech Stack Configuration
############
WHISPER_MODEL=Systran/faster-distil-whisper-large-v3
# TTS Voice via API
############
# Speech Stack Authentication (REQUIRED for production!)
# Generate password hash with: docker run --rm caddy:alpine caddy hash-password --plaintext your_password
############
WHISPER_AUTH_USER=admin
WHISPER_AUTH_PASSWORD=
WHISPER_AUTH_PASSWORD_HASH=
TTS_AUTH_USER=admin
TTS_AUTH_PASSWORD=
TTS_AUTH_PASSWORD_HASH=
############
# [required]
# Scriberr - AI Audio Transcription with Speaker Diarization
############
# Whisper Model: tiny, base, small, medium, large
# Larger models = better quality, more RAM/time required
SCRIBERR_WHISPER_MODEL=base
# Speaker Diarization Settings
SCRIBERR_SPEAKER_DIARIZATION=true
SCRIBERR_MIN_SPEAKERS=2
SCRIBERR_MAX_SPEAKERS=4
# Performance (CPU threads for transcription)
SCRIBERR_THREADS=4
SCRIBERR_BATCH_SIZE=16
############
# OCR Bundle Configuration
############
# Number of CPU cores for Tesseract workers
OCR_CPU_CORES=4
# EasyOCR API Secret Key
EASYOCR_SECRET_KEY=
# LibreTranslate Configuration (optional)
############
LIBRETRANSLATE_CHAR_LIMIT=10000
LIBRETRANSLATE_DEFAULT_SOURCE=auto
LIBRETRANSLATE_DEFAULT_TARGET=en
LIBRETRANSLATE_API_KEYS=false
LIBRETRANSLATE_THREADS=4
LIBRETRANSLATE_SUGGESTIONS=false
LIBRETRANSLATE_DISABLE_WEB_UI=false
LIBRETRANSLATE_UPDATE_MODELS=true
LIBRETRANSLATE_LOAD_ONLY=en,de,fr,es,it,nl,pl,pt,ru
LIBRETRANSLATE_METRICS=false
############
# Optional Google Authentication for Supabase
# Get these values from the Google Admin Console
############
# ENABLE_GOOGLE_SIGNUP=true
# GOOGLE_CLIENT_ID=
# GOOGLE_CLIENT_SECRET=
# GOOGLE_REDIRECT_URI=
############
# Optional SearXNG Config
# If you run a very small or a very large instance, you might want to change the amount of used uwsgi workers and threads per worker
# More workers (= processes) means that more search requests can be handled at the same time, but it also causes more resource usage
############
# SEARXNG_UWSGI_WORKERS=4
# SEARXNG_UWSGI_THREADS=4
############
# Database - You can change these to any PostgreSQL database that has logical replication enabled.
############
POSTGRES_HOST=db
POSTGRES_DB=postgres
POSTGRES_PORT=5432
# default user is postgres
POSTGRES_USER=postgres
############
# Supavisor -- Database pooler and others that can be left as default values
############
POOLER_PROXY_PORT_TRANSACTION=6543
POOLER_DEFAULT_POOL_SIZE=20
POOLER_MAX_CLIENT_CONN=100
SECRET_KEY_BASE=
VAULT_ENC_KEY=
# Pool size for internal metadata storage used by Supavisor
# This is separate from client connections and used only by Supavisor itself
POOLER_DB_POOL_SIZE=5
############
# API Proxy - Configuration for the Kong Reverse proxy.
############
KONG_HTTP_PORT=8000
KONG_HTTPS_PORT=8443
############
# API - Configuration for PostgREST.
############
PGRST_DB_SCHEMAS=public,storage,graphql_public
############
# Auth - Configuration for the GoTrue authentication server.
############
## General
SITE_URL=http://localhost:3000
ADDITIONAL_REDIRECT_URLS=
JWT_EXPIRY=3600
DISABLE_SIGNUP=false
API_EXTERNAL_URL=http://localhost:8000
## Mailer Config
MAILER_URLPATHS_CONFIRMATION="/auth/v1/verify"
MAILER_URLPATHS_INVITE="/auth/v1/verify"
MAILER_URLPATHS_RECOVERY="/auth/v1/verify"
MAILER_URLPATHS_EMAIL_CHANGE="/auth/v1/verify"
## Email auth
ENABLE_EMAIL_SIGNUP=true
ENABLE_EMAIL_AUTOCONFIRM=true
SMTP_ADMIN_EMAIL=admin@example.com
SMTP_HOST=supabase-mail
SMTP_PORT=2500
SMTP_USER=fake_mail_user
SMTP_PASS=fake_mail_password
SMTP_SENDER_NAME=fake_sender
ENABLE_ANONYMOUS_USERS=false
## Phone auth
ENABLE_PHONE_SIGNUP=true
ENABLE_PHONE_AUTOCONFIRM=true
############
# Studio - Configuration for the Dashboard
############
STUDIO_DEFAULT_ORGANIZATION=Organization
STUDIO_DEFAULT_PROJECT=Project
STUDIO_PORT=3000
# replace if you intend to use Studio outside of localhost
SUPABASE_PUBLIC_URL=http://localhost:8000
# Enable webp support
IMGPROXY_ENABLE_WEBP_DETECTION=true
# Add your OpenAI API key to enable SQL Editor Assistant
OPENAI_API_KEY=
# Anthropic Claude API (used by bolt.diy)
ANTHROPIC_API_KEY=
# Groq API (fast inference, used by bolt.diy)
GROQ_API_KEY=
############
# Ollama Configuration - Local LLM Server
############
OLLAMA_HOST=http://ollama:11434
OLLAMA_MODEL=qwen2.5:7b-instruct-q4_K_M
# ============================================
# Cloudflare Tunnel Configuration (Optional)
# ============================================
CLOUDFLARE_TUNNEL_TOKEN=
############
# Functions - Configuration for Functions
############
# NOTE: VERIFY_JWT applies to all functions. Per-function VERIFY_JWT is not supported yet.
FUNCTIONS_VERIFY_JWT=false
############
# Logs - Configuration for Analytics
# Please refer to https://supabase.com/docs/reference/self-hosting-analytics/introduction
############
# Change vector.toml sinks to reflect this change
# these cannot be the same value
LOGFLARE_PUBLIC_ACCESS_TOKEN="not-in-use"
LOGFLARE_PRIVATE_ACCESS_TOKEN="not-in-use"
# Docker socket location - this value will differ depending on your OS
DOCKER_SOCKET_LOCATION=/var/run/docker.sock
# Google Cloud Project details
GOOGLE_PROJECT_ID=GOOGLE_PROJECT_ID
GOOGLE_PROJECT_NUMBER=GOOGLE_PROJECT_NUMBER
# Letta
LETTA_SERVER_PASSWORD=
# Langsmith
LANGCHAIN_ENDPOINT=https://api.smith.langchain.com
LANGCHAIN_TRACING_V2=true
LANGCHAIN_API_KEY=
# Dify application settings
# Based on: https://docs.dify.ai/en/getting-started/install-self-hosted/environments
############
DIFY_SECRET_KEY=
DIFY_EXPOSE_NGINX_PORT=8080
DIFY_EXPOSE_NGINX_SSL_PORT=9443
###########################################################################################
COMPOSE_PROFILES="n8n,flowise,monitoring"
PROMETHEUS_PASSWORD_HASH=
SEARXNG_PASSWORD_HASH=
COMFYUI_PASSWORD_HASH=
RAGAPP_PASSWORD_HASH=
############
# Postiz configuration
# Reference: https://docs.postiz.com/configuration/reference
# To protect Postiz via Caddy basic auth (optional), set these:
############
POSTIZ_DISABLE_REGISTRATION=false
############
# Postiz Social Media Integrations
# Leave blank if not used. Provide credentials from each platform.
############
X_API_KEY=
X_API_SECRET=
LINKEDIN_CLIENT_ID=
LINKEDIN_CLIENT_SECRET=
REDDIT_CLIENT_ID=
REDDIT_CLIENT_SECRET=
GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=
BEEHIIVE_API_KEY=
BEEHIIVE_PUBLICATION_ID=
THREADS_APP_ID=
THREADS_APP_SECRET=
FACEBOOK_APP_ID=
FACEBOOK_APP_SECRET=
YOUTUBE_CLIENT_ID=
YOUTUBE_CLIENT_SECRET=
TIKTOK_CLIENT_ID=
TIKTOK_CLIENT_SECRET=
PINTEREST_CLIENT_ID=
PINTEREST_CLIENT_SECRET=
DRIBBBLE_CLIENT_ID=
DRIBBBLE_CLIENT_SECRET=
DISCORD_CLIENT_ID=
DISCORD_CLIENT_SECRET=
DISCORD_BOT_TOKEN_ID=
SLACK_ID=
SLACK_SECRET=
SLACK_SIGNING_SECRET=
MASTODON_URL=https://mastodon.social
MASTODON_CLIENT_ID=
MASTODON_CLIENT_SECRET=
KOPIA_PASSWORD_HASH=
############
# Vexa - Real-time Meeting Transcription API
############
# Vexa Internal Configuration
VEXA_API_KEY=
VEXA_ADMIN_TOKEN=
# Whisper Configuration
VEXA_WHISPER_MODEL=base
VEXA_WHISPER_DEVICE=cpu
# Notes:
# - Vexa is API-only (no web UI), accessible internally at http://api-gateway:8000
# - Use VEXA_API_KEY in n8n workflows for authentication
# - Whisper models: tiny (fastest) -> base (balanced) -> medium/large (best quality)
# - For GPU: Set VEXA_WHISPER_DEVICE=cuda (requires NVIDIA drivers)
############
# Browser Automation Suite - Browserless + Skyvern + Browser-use
# All services run internally (API-only, no external access needed)
############
# Browserless - Centralized Chrome Runtime
BROWSERLESS_TOKEN=
BROWSERLESS_CONCURRENT=10
BROWSERLESS_TIMEOUT=120000
BROWSERLESS_QUEUE=10
BROWSERLESS_DEBUGGER=false
# Skyvern - Vision-based Browser Automation
SKYVERN_API_KEY=
# Optional: Switch to Ollama for local LLMs (default: uses OpenAI)
# ENABLE_OLLAMA=false
# SKYVERN_LLM_KEY=OPENAI
# OLLAMA_MODEL=qwen2.5:7b-instruct
############
# n8n-MCP - Model Context Protocol Server
# Enables AI assistants (Claude/Cursor) to generate n8n workflows
############
N8N_MCP_TOKEN=
N8N_API_KEY=
############
# AI RESEARCH TOOLS - GPT Researcher & Local Deep Research
############
# GPT Researcher - Autonomous Research Agent
GPTR_USERNAME=
GPTR_PASSWORD=
GPTR_PASSWORD_HASH=
# GPT Researcher Configuration
GPTR_RETRIEVER=searx
GPTR_LLM_PROVIDER=ollama
GPTR_REPORT_FORMAT=APA
GPTR_MAX_ITERATIONS=5
GPTR_TOTAL_WORDS=2000
GPTR_LANGUAGE=english
# Local Deep Research Configuration
LDR_LLM_PROVIDER=ollama
LDR_LOCAL_MODEL=qwen2.5:7b-instruct-q4_K_M
LDR_SEARCH_API=searxng
LDR_MAX_LOOPS=5
LDR_FETCH_FULL=false
# Optional API Keys (for cloud models instead of Ollama)
TAVILY_API_KEY=
PERPLEXITY_API_KEY=
############
# Seafile - File Sync & Share Platform
############
SEAFILE_DB_ROOT_PASSWORD=
SEAFILE_DB_PASSWORD=
SEAFILE_ADMIN_PASSWORD=
############
# Paperless-ngx - Document Management with OCR
############
PAPERLESS_DB_PASSWORD=
PAPERLESS_SECRET_KEY=
PAPERLESS_ADMIN_PASSWORD=
############
# Paperless-ngx - Document Management with OCR
############
PAPERLESS_DB_PASSWORD=
PAPERLESS_SECRET_KEY=
PAPERLESS_ADMIN_EMAIL=
PAPERLESS_ADMIN_PASSWORD=
############
# Paperless AI Extensions - Enhanced OCR & RAG
############
# IMPORTANT: Generate this token in Paperless-ngx Admin Panel after installation!
# Go to https://docs.yourdomain.com/admin → Auth Tokens → Add Token
PAPERLESS_API_TOKEN=
# ===== Paperless-GPT (OCR Enhancement) - Protected with Basic Auth =====
PAPERLESS_GPT_USERNAME=
PAPERLESS_GPT_PASSWORD=
PAPERLESS_GPT_PASSWORD_HASH=
# LLM Configuration - DEFAULT: OpenAI (for CPU VPS)
PAPERLESS_GPT_LLM_PROVIDER=openai
PAPERLESS_GPT_LLM_MODEL=gpt-4o-mini
# For Ollama (uncomment and comment out OpenAI above):
# PAPERLESS_GPT_LLM_PROVIDER=ollama
# PAPERLESS_GPT_LLM_MODEL=qwen2.5:7b
# Vision Model for OCR - DEFAULT: OpenAI
PAPERLESS_GPT_VISION_PROVIDER=openai