File tree Expand file tree Collapse file tree 1 file changed +24
-6
lines changed Expand file tree Collapse file tree 1 file changed +24
-6
lines changed Original file line number Diff line number Diff line change 1
- GITGATEWAY_JWT_SECRET = " CHANGE-THIS! VERY IMPORTANT!"
1
+ # Warning: Many configuration would not work with quote (ie "").
2
+
3
+ # JWT Secret is not needed for RS256. Instead, issuer should be specified
4
+ # (eg, https://dev-1234.oktapreview.com/oauth2/default)
5
+ GITGATEWAY_JWT_SECRET =
6
+
7
+ # @TODO - REQUIRED for Okta
8
+ ISSUER =
9
+
10
+ # @TODO - REQUIRED for Okta
11
+ CLIENT_ID =
12
+
13
+ AUD = api://default
2
14
3
15
GITGATEWAY_DB_DRIVER = sqlite3
4
16
DATABASE_URL = gorm.db
5
17
6
- GITGATEWAY_API_HOST = localhost
7
- PORT = 9999
18
+ # @TODO - Is there way to expose internal port from Docker?
19
+ GITGATEWAY_API_HOST = 0.0.0.0
20
+ PORT = 8087
21
+
22
+ # @TODO - REQUIRED
23
+ GITGATEWAY_GITHUB_ACCESS_TOKEN =
8
24
9
- GITGATEWAY_GITHUB_ACCESS_TOKEN = " personal-access-token "
10
- GITGATEWAY_GITHUB_REPO = " owner/name "
25
+ # @TODO - REQUIRED
26
+ GITGATEWAY_GITHUB_REPO =
11
27
12
- GITGATEWAY_ROLES = "admin,cms" # leave blank to allow all roles
28
+ # Original example.env wrote: leave blank to allow all roles. But, it won't
29
+ # work unless it is commented out
30
+ # GITGATEWAY_ROLES=
You can’t perform that action at this time.
0 commit comments