Skip to content
Snippets Groups Projects
Commit 15d3fb72 authored by David Trattnig's avatar David Trattnig
Browse files

fix: remove invalid whitespace from .env

parent feaf0491
No related branches found
No related tags found
No related merge requests found
......@@ -3,29 +3,29 @@
# API URLs for the other AuRa modules
# ===================================
VUE_APP_BASEURI_STEERING = http://127.0.0.1:8000
VUE_APP_BASEURI_MEDIA = http://localhost:8000/site_media/
VUE_APP_API_STEERING = http://127.0.0.1:8000/api/v1/
VUE_APP_API_TANK = http://127.0.0.1:8040/api/v1/
VUE_APP_TANK = http://127.0.0.1:8040/
VUE_APP_BASEURI_STEERING=http://127.0.0.1:8000
VUE_APP_BASEURI_MEDIA=http://localhost:8000/site_media/
VUE_APP_API_STEERING=http://127.0.0.1:8000/api/v1/
VUE_APP_API_TANK=http://127.0.0.1:8040/api/v1/
VUE_APP_TANK=http://127.0.0.1:8040/
# OIDC settings
# =============
# The client ID will most certainly differ for every local dev environment:
VUE_APP_OIDC_CLIENT_ID = 575513
VUE_APP_API_STEERING_OIDC_URI = http://localhost:8000/openid
VUE_APP_API_STEERING_OIDC_EXPIRE_NOTIFICATION = 120
VUE_APP_API_STEERING_OIDC_REDIRECT_URI = http://localhost:8080/oidc_callback.html
VUE_APP_API_STEERING_OIDC_REDIRECT_URI_SILENT = http://localhost:8080/oidc_callback_silentRenew.html
VUE_APP_API_STEERING_OIDC_REDIRECT_URI_POSTLOGOUT = http://localhost:8080
VUE_APP_OIDC_CLIENT_ID=575513
VUE_APP_API_STEERING_OIDC_URI=http://localhost:8000/openid
VUE_APP_API_STEERING_OIDC_EXPIRE_NOTIFICATION=120
VUE_APP_API_STEERING_OIDC_REDIRECT_URI=http://localhost:8080/oidc_callback.html
VUE_APP_API_STEERING_OIDC_REDIRECT_URI_SILENT=http://localhost:8080/oidc_callback_silentRenew.html
VUE_APP_API_STEERING_OIDC_REDIRECT_URI_POSTLOGOUT=http://localhost:8080
# Dashboard UI defaults
# =====================
VUE_APP_TIMESLOT_FILTER_DEFAULT_NUMSLOTS = 10
VUE_APP_TIMESLOT_FILTER_DEFAULT_DAYS = 60
VUE_APP_SHOW_THRESHOLD = 10
VUE_APP_TIMESLOT_FILTER_DEFAULT_NUMSLOTS=10
VUE_APP_TIMESLOT_FILTER_DEFAULT_DAYS=60
VUE_APP_SHOW_THRESHOLD=10
# Dashboard logging & debugging
# =============================
# use one of: debug, info, warn, error, fatal
VUE_APP_LOGLEVEL = warn
VUE_APP_LOGLEVEL=warn
TZ=Europe/Vienna
AURA_PROTO=http
AURA_HOST=localhost
DASHBOARD_OIDC_CLIENT_ID=575513
......@@ -2,44 +2,44 @@
# ===============================
# These are the REST API endpoints of your aura/steering module
VUE_APP_BASEURI_STEERING = https://YOUR.STEERING.DOMAIN
VUE_APP_BASEURI_MEDIA = http://localhost:8000/site_media/
VUE_APP_API_STEERING = http://YOUR.STEERING.DOMAIN/api/v1/
VUE_APP_BASEURI_STEERING=https://YOUR.STEERING.DOMAIN
VUE_APP_BASEURI_MEDIA=http://localhost:8000/site_media/
VUE_APP_API_STEERING=http://YOUR.STEERING.DOMAIN/api/v1/
# aura/tank REST API settings
# ===========================
VUE_APP_API_TANK = http://YOUR.TANK.DOMAIN/api/v1/
VUE_APP_TANK = http://YOUR.TANK.DOMAIN/
VUE_APP_API_TANK=http://YOUR.TANK.DOMAIN/api/v1/
VUE_APP_TANK=http://YOUR.TANK.DOMAIN/
# Open ID Connect settings
# ========================
# Put your OpenID Connect client ID here. You get it in the setup of the aura/steering module.
VUE_APP_OIDC_CLIENT_ID = 174626
VUE_APP_OIDC_CLIENT_ID=174626
# OIDC endpoint of the pv/steering module
VUE_APP_API_STEERING_OIDC_URI = http://YOUR.STEERING.DOMAIN/openid
VUE_APP_API_STEERING_OIDC_URI=http://YOUR.STEERING.DOMAIN/openid
# Number of seconds before token gets invalid, when renewal should be started
VUE_APP_API_STEERING_OIDC_EXPIRE_NOTIFICATION = 120
VUE_APP_API_STEERING_OIDC_EXPIRE_NOTIFICATION=120
# Local callback handlers that are called by the aura/steering OIDC module after login/renwal.
# It is important to put exactly the same URI here as it is configured in your OIDC client settings
# in the aura/steering module. Don't mix IPs and DNS names!
VUE_APP_API_STEERING_OIDC_REDIRECT_URI = http://FINAL.DASHBOARD.DOMAIN/static/oidc_callback.html
VUE_APP_API_STEERING_OIDC_REDIRECT_URI_SILENT = http://FINAL.DASHBOARD.DOMAIN/static/oidc_callback_silentRenew.html
VUE_APP_API_STEERING_OIDC_REDIRECT_URI=http://FINAL.DASHBOARD.DOMAIN/static/oidc_callback.html
VUE_APP_API_STEERING_OIDC_REDIRECT_URI_SILENT=http://FINAL.DASHBOARD.DOMAIN/static/oidc_callback_silentRenew.html
# address that is called by the pv/steering OIDC module after logout - should be the dashboard entry point
VUE_APP_API_STEERING_OIDC_REDIRECT_URI_POSTLOGOUT = http://FINAL.DASHBOARD.DOMAIN
VUE_APP_API_STEERING_OIDC_REDIRECT_URI_POSTLOGOUT=http://FINAL.DASHBOARD.DOMAIN
# Dashboard UI defaults
# =====================
# How many timeslots should be shown by default? (has to be a string)
VUE_APP_TIMESLOT_FILTER_DEFAULT_NUMSLOTS = 10
VUE_APP_TIMESLOT_FILTER_DEFAULT_NUMSLOTS=10
# After how many shows to switch to the compact show selector vs the dropdown
VUE_APP_SHOW_THRESHOLD = 10
VUE_APP_SHOW_THRESHOLD=10
# For how many days from now should timeslots be fetched by default? (has to be an int)
VUE_APP_TIMESLOT_FILTER_DEFAULT_DAYS = 60
VUE_APP_TIMESLOT_FILTER_DEFAULT_DAYS=60
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment