-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
33 lines (26 loc) · 1005 Bytes
/
Copy pathenv.example
File metadata and controls
33 lines (26 loc) · 1005 Bytes
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
# Azure Storage Configuration
# Replace these values with your actual Azure Storage credentials
AZURE_STORAGE_CONNECTION_STRING=DefaultEndpointsProtocol=https;AccountName=YOUR_ACCOUNT_NAME;AccountKey=YOUR_ACCOUNT_KEY;EndpointSuffix=core.windows.net
AZURE_STORAGE_CONTAINER_NAME=your-container-name
# Azure Redis Configuration (if using)
AZURE_REDIS_HOST=your-redis-host.redis.cache.windows.net
AZURE_REDIS_PASSWORD=your-redis-password
AZURE_REDIS_PORT=6380
# GitHub Configuration
GITHUB_TOKEN=your-github-token
# Build Configuration
OPERATION=BUILD # or DELETE
PROJECT_ID=unique-project-id
REPO_OWNER=github-username
REPO_NAME=repository-name
BRANCH=main
ROOT_DIR=. # or subdirectory path
BUILD_FOLDER=dist # or build output directory
BUILD_COMMAND=npm run build
# Database
DATABASE_URL=postgresql://user:password@host:port/database
# Docker Configuration
DOCKER_IMAGE=your-builder-image:latest
# Proxy Server
BASE_PATH=https://your-azure-storage-url
NOT_FOUND_PATH=https://your-not-found-page-url