mirror of
https://github.com/netbirdio/netbird.git
synced 2025-02-03 11:59:36 +01:00
1aafc15607
split setup.env with example and base add setup.env to .gitignore to avoid overwrite from new versions Added test workflow for docker-compose and validated configure.sh generated variables
16 lines
625 B
Bash
16 lines
625 B
Bash
## example file, you can copy this file to setup.env and update its values
|
|
##
|
|
# Dashboard domain and auth0 configuration
|
|
|
|
# Dashboard domain. e.g. app.mydomain.com
|
|
NETBIRD_DOMAIN="localhost"
|
|
# e.g. dev-24vkclam.us.auth0.com
|
|
NETBIRD_AUTH0_DOMAIN=$CI_NETBIRD_AUTH0_DOMAIN
|
|
# e.g. 61u3JMXRO0oOevc7gCkZLCwePQvT4lL0
|
|
NETBIRD_AUTH0_CLIENT_ID=$CI_NETBIRD_AUTH0_CLIENT_ID
|
|
# e.g. https://app.mydomain.com/ or https://app.mydomain.com,
|
|
# Make sure you used the exact same value for Identifier
|
|
# you used when creating your Auth0 API
|
|
NETBIRD_AUTH0_AUDIENCE=$CI_NETBIRD_AUTH0_AUDIENCE
|
|
# e.g. hello@mydomain.com
|
|
NETBIRD_LETSENCRYPT_EMAIL="" |