Skip to content
Snippets Groups Projects
sample.env.development 1.3 KiB
Newer Older
  • Learn to ignore specific revisions
  • # For detailed comments take a look at the sample.env.production
    # Here we filled in some common defaults for local development
    
    # 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_STEERING_SHOWS = http://127.0.0.1:8000/api/v1/shows/
    
    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
    
    
    # Dashboard UI defaults
    # =====================
    VUE_APP_TIMESLOT_FILTER_DEFAULT_NUMSLOTS = 10
    VUE_APP_TIMESLOT_FILTER_DEFAULT_DAYS = 60
    
    
    # Dashboard logging & debugging
    # =============================
    # use one of: debug, info, warn, error, fatal
    VUE_APP_LOGLEVEL = warn