generated from oracle/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #112 from oracle/ORDSConcertAppTemplate
feat: add the ords-concert-app template
- Loading branch information
Showing
259 changed files
with
25,409 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Copyright (c) 2024, Oracle and/or its affiliates. | ||
# All rights reserved | ||
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/ | ||
|
||
# We refer to some variables as Autonomous Database specific | ||
# but you can use whichever ORDS URL you want/have as well as the user, | ||
# as long as this user is capable of creating and REST Enabling other schemas. | ||
ADB_ORDS_URL=https://example.com:8080/ords/ | ||
ADB_ADMIN_USER=username | ||
ADB_ADMIN_PASSWORD= | ||
|
||
# The name of the schema that will be created to host all of the | ||
# ORDS Concert App database objects. | ||
SCHEMA_NAME=ORDS_CONCERT_APP | ||
SCHEMA_PASSWORD= | ||
|
||
# Your Auth0 tenant JWT credentials, used by ORDS to validate request to protected endpoints. | ||
JWT_ISSUER=https://my-domain.auth0.com/ | ||
JWT_VERIFICATION_KEY=https://my-domain.auth0.com/oauth/token/.well-known/jwks.json | ||
JWT_AUDIENCE=https://concert.sample.app | ||
|
||
# Auth0 Authentication app configuration parameters specific of the sample app. | ||
AUTH0_RETURN_TO_URL=http://localhost:3000 | ||
AUTH0_CALLBACK_URL=http://localhost:3000/callback | ||
AUTH0_CLIENT_ID=auth0_client_id | ||
AUTH0_CLIENT_SECRET=auth0_client_secret | ||
AUTH0_DOMAIN=my-domain.auth0.com | ||
AUTH0_LOGOUT_URL=https://my-domain.auth0.com/v2/logout |
Oops, something went wrong.