aurelia-ui-toolkits / carmel-api

bridge catalog application editor
MIT License
0 stars 1 forks source link

Configuration for Auth0 PaaS #11

Open adriatic opened 7 years ago

adriatic commented 7 years ago

These settings are defined in this quick start tutorial. As the initial definition of Carmel (a client in the Auth0 terminology) are that of a "Regular Web Application".

image

I will redefine the Carmel's name to be carmel-api and make it to be an aspnet-core-webapi compliant authentication. More specifically, this flow is demonstrated in the [Authenticate with JWT (RS256)]() sample

The appsettings.json file is defined as

{
  "Logging": {
    "IncludeScopes": false,
    "LogLevel": {
      "Default": "Debug",
      "System": "Information",
      "Microsoft": "Information"
    }
  },
  "Auth0": {
    "Domain": "aureliatools.auth0.com",
    "ClientId": "a03D2hkdqbYwilJiO7ZEg4NxPO2c3TDZ",
  }
}