Skip to content

Commit 3c9537f

Browse files
committed
chore: add comments to .env.example
1 parent 04c612b commit 3c9537f

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

templates/ords-remix-jwt-sample/.env.example

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,24 @@
22
# All rights reserved
33
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
44

5+
# We refer to some variables as Autonomous Database specific
6+
# but you can use whichever ORDS URL you want/have as well as the user,
7+
# as long as this user is capable of creating and REST Enabling other schemas.
58
ADB_ORDS_URL=https://example.com:8080/ords/
69
ADB_ADMIN_USER=username
7-
ADB_ADMIN_PASSWORD=password
10+
ADB_ADMIN_PASSWORD=
811

12+
# The name of the schema that will be created to host all of the
13+
# ORDS Concert App database objects.
914
SCHEMA_NAME=ORDS_CONCERT_APP
10-
SCHEMA_PASSWORD=SuperS3curePsswd
15+
SCHEMA_PASSWORD=
1116

17+
# Your Auth0 tenant JWT credentials, used by ORDS to validate request to protected endpoints.
1218
JWT_ISSUER=https://my-domain.auth0.com/
1319
JWT_VERIFICATION_KEY=https://my-domain.auth0.com/oauth/token/.well-known/jwks.json
1420
JWT_AUDIENCE=https://concert.sample.app
1521

22+
# Auth0 Authentication app configuration parameters specific of the sample app.
1623
AUTH0_RETURN_TO_URL=http://localhost:3000
1724
AUTH0_CALLBACK_URL=http://localhost:3000/callback
1825
AUTH0_CLIENT_ID=auth0_client_id

0 commit comments

Comments
 (0)