-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
53 lines (47 loc) · 2 KB
/
.env.example
File metadata and controls
53 lines (47 loc) · 2 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
# ========================================
# APPLICATION PORT
# ========================================
PORT=3000
# ========================================
# POSTGRESQL DATABASE
# ========================================
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/engagements"
# ========================================
# AUTHENTICATION
# ========================================
AUTH_SECRET="your-local-dev-secret-key-placeholder"
VALID_ISSUERS='["https://api.topcoder-dev.com"]'
# ========================================
# EXTERNAL SERVICES
# ========================================
TOPCODER_API_URL_BASE=https://api.topcoder-dev.com
# Derived endpoints:
# - TC_PROJECT_SERVICE_URL: ${TOPCODER_API_URL_BASE}/v6/projects
# - STANDARDIZED_SKILLS_API_URL: ${TOPCODER_API_URL_BASE}/v5/standardized-skills
# - MEMBER_API_V6_URL: ${TOPCODER_API_URL_BASE}/v6/members
# PLATFORM UI BASE URL (used to generate anonymous feedback links)
PLATFORM_UI_BASE_URL=http://localhost:3001
# In production use https://platform.topcoder.com or https://platform.topcoder-dev.com
# ========================================
# EVENT BUS
# ========================================
BUS_API_URL=https://api.topcoder-dev.com/eventBus
KAFKA_ERROR_TOPIC=common.error.reporting
# ========================================
# EMAIL
# ========================================
SENDGRID_ASSIGNMENT_OFFER_TEMPLATE_ID=
SENDGRID_ENGAGEMENT_ASSIGNMENT_UPDATED_TEMPLATE_ID=
SENDGRID_ASSIGNMENT_OFFER_ACCEPTED_TEMPLATE_ID=
SENDGRID_ASSIGNMENT_OFFER_REJECTED_TEMPLATE_ID=
# SendGrid template for notifying applicants their application is under review.
SENDGRID_UNDER_REVIEW_TEMPLATE_ID=
# SendGrid template for notifying applicants their application was not selected.
SENDGRID_REJECTED_TEMPLATE_ID=
# ========================================
# M2M AUTHENTICATION
# ========================================
AUTH0_URL=https://topcoder-dev.auth0.com/oauth/token
M2M_CLIENT_ID=your_client_id
M2M_CLIENT_SECRET=your_client_secret
AUTH0_AUDIENCE=https://api.topcoder-dev.com