-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
50 lines (41 loc) · 1.74 KB
/
.env.example
File metadata and controls
50 lines (41 loc) · 1.74 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
# Session configs
# https://nuxt.com/modules/auth-utils#quick-setup
NUXT_SESSION_NAME=auth_session # session cookie name
NUXT_SESSION_PASSWORD=your-session-password-with-at-least-32-characters-here
# OAuth Github configs
# https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/creating-an-oauth-app
NUXT_OAUTH_GITHUB_CLIENT_ID=your-github-client-id
NUXT_OAUTH_GITHUB_CLIENT_SECRET=your-github-client-secret
# OAuth Google configs
# https://console.cloud.google.com/apis/credentials
NUXT_OAUTH_GOOGLE_CLIENT_ID=your-google-client-id
NUXT_OAUTH_GOOGLE_CLIENT_SECRET=your-google-client-secret
# Listmonk configs (for sending magic link emails)
NUXT_LISTMONK_URL=http://localhost:9000 # without /api/
NUXT_LISTMONK_USER=listmonk-username
NUXT_LISTMONK_TOKEN=listmonk-token
NUXT_LISTMONK_EN_TEMPLATE_ID=
NUXT_LISTMONK_AR_TEMPLATE_ID=
NUXT_LISTMONK_FR_TEMPLATE_ID=
NUXT_LISTMONK_CKB_TEMPLATE_ID=
# Base URL
NUXT_PUBLIC_BASE_URL=http://localhost:3000
# Redis configs - fallback to in-memory store if not configured
NUXT_REDIS_HOST=localhost
NUXT_REDIS_PORT=6379
NUXT_REDIS_PASSWORD=
NUXT_REDIS_DB=0
NUXT_REDIS_KEY_PREFIX=nuha_auth:
# Strapi configs
STRAPI_URL=
STRAPI_TOKEN=
# AI Model endpoint
NUXT_AI_MODEL_URL=http://localhost:8000
# Default AI Model/Region (optional - falls back to auto-detection if not set)
# NOTE: For the initial release of Nuha, set it to `egy`
NUXT_PUBLIC_AI_MODEL_DEFAULT_REGION=egy
# Docker Configuration Notes:
# - All variables above are automatically passed to Docker containers
# - Redis will be available at 'redis' hostname when using docker-compose
# - For production Docker builds, ensure NUXT_SESSION_PASSWORD is set to a secure value
# - Set STRAPI_URL to your Strapi instance (e.g., http://localhost:1337 for local development)