-
Notifications
You must be signed in to change notification settings - Fork 985
Expand file tree
/
Copy path.env.example
More file actions
63 lines (51 loc) · 1.77 KB
/
.env.example
File metadata and controls
63 lines (51 loc) · 1.77 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
# Production Environment Configuration
# No Code Architect Toolkit
# The name of your application.
APP_NAME=NCAToolkit
# Debug mode setting. Set to `false` for production environments.
APP_DEBUG=false
# Your app's domain or subdomain, without the 'http://' or 'https://' prefix.
APP_DOMAIN=example.com
# Full application URL is automatically configured; no modification required.
APP_URL=https://${APP_DOMAIN}
# SSL settings
SSL_EMAIL=user@example.com
# API_KEY
# Purpose: Used for API authentication.
# Requirement: Mandatory.
API_KEY=your_api_key_here
# s3 Compatible Storage Env Vars
#
#S3_ACCESS_KEY=your_access_key
#S3_SECRET_KEY=your_secret_key
#S3_ENDPOINT_URL=https://your-endpoint-url
#S3_REGION=your-region
#S3_BUCKET_NAME=your-bucket-name
# Google Cloud Storage Env Variables
#
# GCP_SA_CREDENTIALS
# Purpose: The JSON credentials for the GCP Service Account.
# Requirement: Mandatory if using GCP storage.
#GCP_SA_CREDENTIALS=/path/to/your/gcp/service_account.json
# GCP_BUCKET_NAME
# Purpose: The name of the GCP storage bucket.
# Requirement: Mandatory if using GCP storage.
#GCP_BUCKET_NAME=your_gcp_bucket_name
# LOCAL_STORAGE_PATH
# Purpose: The local file system path for temporary file storage during processing.
# Default: /tmp
# Requirement: Optional.
#LOCAL_STORAGE_PATH=/tmp
# Google Cloud Run Jobs
# Purpose: Offload long-running tasks to Cloud Run Jobs for scalability
# Requirement: Optional. Configure if you want to use GCP Cloud Run Jobs.
#
# GCP_JOB_NAME
# Purpose: Name of the Cloud Run Job to trigger for long-running tasks
# Requirement: Required if using Cloud Run Jobs
#GCP_JOB_NAME=your-cloud-run-job-name
#
# GCP_JOB_LOCATION
# Purpose: GCP region where the Cloud Run Job is deployed
# Requirement: Optional. Defaults to us-central1
#GCP_JOB_LOCATION=us-central1