-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
129 lines (108 loc) · 5.85 KB
/
.env.example
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# =============================================================================
# `NEXT_PRIVATE_BASE_URL`:
# Base url of the app.
# For local development you can set the url of ngrok, https://{SUB_DOMAIN_OF_NGROK}.ngrok.io
# =============================================================================
NEXT_PRIVATE_BASE_URL=
# =============================================================================
# `NEXT_PUBLIC_SENTRY_DSN`:
# DSN of the Sentry.
# =============================================================================
NEXT_PUBLIC_SENTRY_DSN=
# =============================================================================
# `NEXT_PUBLIC_IS_SENTRY_ENABLED`:
# Whether Sentry is enabled or not.
# =============================================================================
NEXT_PUBLIC_IS_SENTRY_ENABLED=
# =============================================================================
# `NEXT_PRIVATE_DOMAIN`:
# Domain of the app.
# For local development you can set the domain of ngrok, {SUB_URL}.ngrok.io
# =============================================================================
NEXT_PRIVATE_DOMAIN=
# =============================================================================
# `NEXT_PRIVATE_PORT`:
# Port of the app. 3000 by default.
# =============================================================================
NEXT_PRIVATE_PORT=
# =============================================================================
# `NEXT_PUBLIC_VERSION`:
# Semantic version of the app.
# For local development you can use any version. E.g. 1.0.0-local
# =============================================================================
NEXT_PUBLIC_VERSION=
# =============================================================================
# `NEXT_PUBLIC_ENVIRONMENT`:
# Environment name of the app itself
# It is used just for presentation. Ex: local, sertac's computer etc.
# =============================================================================
NEXT_PUBLIC_ENVIRONMENT=
# =============================================================================
# `NEXT_PUBLIC_ZEPLIN_WEB_APP_BASE_URL`:
# The url of Zeplin web app. "https://app.zeplin.io" by default
# =============================================================================
NEXT_PUBLIC_ZEPLIN_WEB_APP_BASE_URL=
# =============================================================================
# `NEXT_PUBLIC_ZEPLIN_APP_URI_SCHEME`:
# The URI scheme of Zeplin app URIs. "zpl" by default
# =============================================================================
NEXT_PUBLIC_ZEPLIN_APP_URI_SCHEME=
# =============================================================================
# `NEXT_PRIVATE_REDIS_URL`:
# The url of redis service. "redis://localhost:6379" by default
# =============================================================================
NEXT_PRIVATE_REDIS_URL=
# =============================================================================
# `NEXT_PRIVATE_MONGO_URL`:
# The url of mongo service. "mongodb://localhost:27017/zeplin-microsoft-teams-app" by default
# =============================================================================
NEXT_PRIVATE_MONGO_URL=
# =============================================================================
# `NEXT_PRIVATE_IS_MONGO_DEBUG`:
# Whether debug logs for mongo are enabled or not.
# =============================================================================
NEXT_PRIVATE_IS_MONGO_DEBUG=
# =============================================================================
# `NEXT_PRIVATE_ZEPLIN_URL`:
# The url of Zeplin API. "https://api.zeplin.dev" by default
# =============================================================================
NEXT_PRIVATE_ZEPLIN_URL=
# =============================================================================
# `NEXT_PRIVATE_ZEPLIN_CLIENT_ID`:
# client id for Zeplin API.
# For local development you can create a client from https://app.zeplin.io/profile/developer
# =============================================================================
NEXT_PRIVATE_ZEPLIN_CLIENT_ID=
# =============================================================================
# `NEXT_PRIVATE_ZEPLIN_CLIENT_SECRET`:
# client secret for Zeplin API.
# For local development you can create a client from https://app.zeplin.io/profile/developer
# =============================================================================
NEXT_PRIVATE_ZEPLIN_CLIENT_SECRET=
# =============================================================================
# `NEXT_PRIVATE_WEBHOOK_SECRET`:
# The secret for Zeplin webhooks. "dummy-secret" by default
# =============================================================================
NEXT_PRIVATE_WEBHOOK_SECRET=
# =============================================================================
# `NEXT_PRIVATE_APPLICATION_ID`:
# GUID of the app.
# For local development you can generate a random GUID
# =============================================================================
NEXT_PRIVATE_APPLICATION_ID=
# =============================================================================
# `NEXT_PRIVATE_CONNECTOR_ID`:
# GUID of the connector.
# For local development you can create a connector from https://aka.ms/ConnectorsDashboard
# =============================================================================
NEXT_PRIVATE_CONNECTOR_ID=
# =============================================================================
# `NEXT_PRIVATE_MIXPANEL_TOKEN`:
# Client token for the Mixpanel project.
# =============================================================================
NEXT_PRIVATE_MIXPANEL_TOKEN=
# =============================================================================
# `NEXT_PRIVATE_IS_MIXPANEL_ENABLED`:
# Whether Mixpanel is enabled or not.
# =============================================================================
NEXT_PRIVATE_IS_MIXPANEL_ENABLED=