This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.env.example
115 lines (86 loc) · 3.87 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
# Publishable API key used for website (pubk_...)
STELACE_PUBLISHABLE_API_KEY=
# Secret API key used to retrieve data to prebuild pages (seck_...).
# Warning: only needed for build (scripts). Don’t include this key in your app.
STELACE_SECRET_API_KEY=
# Stelace public platform ID can be used to identify the platform
# in place of API keys, for uses such as Single Sign-On
STELACE_PUBLIC_PLATFORM_ID=
##################
## CONTENT / UI ##
##################
# Injected in various contents such as default translations
VUE_APP_SERVICE_NAME=Stelace
# Stelace Instant URL used in app meta tags and for email redirections
STELACE_INSTANT_WEBSITE_URL=
# Currently 'en' or 'fr'
VUE_APP_DEFAULT_LANGUAGE=
# ISO code supported by payment provider, like 'USD' or 'EUR'
VUE_APP_DEFAULT_CURRENCY=
# Enable authentication with social login or SSO
# Set to comma-separated list of providers enabled in your platform private configuration
# e.g. VUE_APP_SSO_PROVIDERS=github
VUE_APP_SSO_PROVIDERS=
#####################
## MAP / GEOCODING ##
#####################
# Mapbox tiles style such as mapbox://styles/mapbox/streets-v11 (cf. mapbox docs).
# You can also use third-party tiles provider such as Maptiler
VUE_APP_MAPBOX_STYLE=
VUE_APP_MAPBOX_TOKEN=
###############
## ANALYTICS ##
###############
# Provide this (like UA-XXXXXXXX-1) to use Google Analytics
VUE_APP_GOOGLE_ANALYTICS_ID=
# 'true' by default except when NODE_ENV === 'production'. Set this to 'false' to disable
VUE_APP_GOOGLE_ANALYTICS_DEBUG=
#############
## LOGGING ##
#############
# You can fill this to make debugging much easier in production environement:
# You just have create a free sentry (https://sentry.io/) account to start logging errors remotely.
VUE_APP_SENTRY_LOGGING_DSN=
# Source maps will be sent to your Sentry account on production build if you provide these.
# Note that we’ve already configured Webpack for you :)
# https://docs.sentry.io/platforms/javascript/sourcemaps/
# Your token may need to have the following permissions to upload sourcemaps:
# project:read, project:releases, project:write, org:read
SENTRY_AUTH_TOKEN=
SENTRY_ORG=
SENTRY_PROJECT=
###########################
## CONTINUOUS DEPLOYMENT ##
###########################
# To enjoy built-in continuous deployment just click on "Deploy to netlify" in readme to get started.
# You will generally use the same project for production and live environments.
# Only set this if you want `yarn deploy:prod` to publish to a specific Netlify project
NETLIFY_ID_FOR_PRODUCTION=
#################
## DEVELOPMENT ##
#################
# All of these can usually be left empty
# Set to 'true' to use the same fonts CSS file as in production
# and disable Webfontloader during development.
# Webfontloader is convenient to try out fonts during development by just updating `userFont` in styles.json
# But including Google Fonts CSS equivalent in build allows loading speed optimization
# You may want set this to 'true' to ensure styles.json is always up to date for deployment to production
VUE_APP_USE_PROD_FONTS_CSS=
# Following vars are probably only useful to Stelace devs
# Override API URL (default: https://api.stelace.com)
STELACE_API_URL=
# Can be changed to another WebSocket server implementing Stelace Signal conventions
# (default: https://api.stelace.com/signal)
VUE_APP_STELACE_SIGNAL_URL=
# Endpoint where we can get S3 bucket signed URL to upload user images and attachments
VUE_APP_CDN_POLICY_ENDPOINT=
# Useful when using a shared S3 bucket, to easily single out app’s files, e.g. 'dev/myname'
VUE_APP_CDN_UPLOAD_PREFIX=
# CDN offering image resizing API
# Include protocol and trailing slash. Default: 'https://cdn.stelace.com/'
VUE_APP_CDN_WITH_IMAGE_HANDLER_URL=
# Images are uploaded in this bucket before being distributed/resized over CDN
# Default: 'stelace-instant-files'
VUE_APP_CDN_S3_BUCKET=
# Alternate bucket using image handler
VUE_APP_CDN_S3_DEV_BUCKET=