-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (32 loc) · 995 Bytes
/
.env.example
File metadata and controls
37 lines (32 loc) · 995 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
33
34
35
36
37
# Beacon Configuration Example
# Copy this file to .env and update with your values
# API Configuration
API_VERSION=v2.0
ENVIRONMENT=dev
# Beacon Information
BEACON_ID=org.example.beacon
BEACON_NAME=Beacon Skeleton
BEACON_DESCRIPTION=A skeleton implementation of the GA4GH Beacon v2 API
BEACON_VERSION=0.1.0
BEACON_WELCOME_URL=https://example.org/beacon
BEACON_ALTERNATIVE_URL=
BEACON_CREATE_DATE_TIME=2025-01-01T00:00:00Z
BEACON_UPDATE_DATE_TIME=2025-01-01T00:00:00Z
# Organization Information
ORGANIZATION_ID=org.example
ORGANIZATION_NAME=Example Organization
ORGANIZATION_DESCRIPTION=An example organization running a Beacon
ORGANIZATION_ADDRESS=
ORGANIZATION_WELCOME_URL=https://example.org
ORGANIZATION_CONTACT_URL=https://example.org/contact
ORGANIZATION_LOGO_URL=https://example.org/logo.png
# Server Configuration
HOST=0.0.0.0
PORT=8000
RELOAD=true
LOG_LEVEL=info
# CORS Configuration
CORS_ORIGINS=["*"]
CORS_ALLOW_CREDENTIALS=true
CORS_ALLOW_METHODS=["*"]
CORS_ALLOW_HEADERS=["*"]