Skip to content

Commit a5de658

Browse files
committed
Merge branch jwt-integration into feature/forms-from-json-schema
2 parents 64e683a + 755a9b2 commit a5de658

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1506
-1468
lines changed

.gitignore

Lines changed: 50 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,50 @@
1-
# See http://help.github.com/ignore-files/ for more about ignoring files.
2-
3-
# compiled output
4-
/dist
5-
/tmp
6-
/out-tsc
7-
# Only exists if Bazel was run
8-
/bazel-out
9-
10-
# dependencies
11-
/node_modules
12-
13-
# profiling files
14-
chrome-profiler-events*.json
15-
16-
# IDEs and editors
17-
/.idea
18-
.project
19-
.classpath
20-
.c9/
21-
*.launch
22-
.settings/
23-
*.sublime-workspace
24-
25-
# IDE - VSCode
26-
.vscode/*
27-
!.vscode/settings.json
28-
!.vscode/tasks.json
29-
!.vscode/launch.json
30-
!.vscode/extensions.json
31-
.history/*
32-
33-
# misc
34-
/.sass-cache
35-
/connect.lock
36-
/coverage
37-
/libpeerconnection.log
38-
npm-debug.log
39-
yarn-error.log
40-
testem.log
41-
/typings
42-
43-
# System Files
44-
.DS_Store
45-
Thumbs.db
46-
47-
.terraform*
48-
.angular/
49-
.gradle
50-
build/
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
# Only exists if Bazel was run
8+
/bazel-out
9+
10+
# dependencies
11+
/node_modules
12+
13+
# profiling files
14+
chrome-profiler-events*.json
15+
16+
# IDEs and editors
17+
/.idea
18+
.project
19+
.classpath
20+
.c9/
21+
*.launch
22+
.settings/
23+
*.sublime-workspace
24+
25+
# IDE - VSCode
26+
.vscode/
27+
!.vscode/settings.json
28+
!.vscode/tasks.json
29+
!.vscode/launch.json
30+
!.vscode/extensions.json
31+
.history/
32+
33+
# misc
34+
/.sass-cache
35+
/connect.lock
36+
/coverage
37+
/libpeerconnection.log
38+
npm-debug.log
39+
yarn-error.log
40+
testem.log
41+
/typings
42+
43+
# System Files
44+
.DS_Store
45+
Thumbs.db
46+
47+
.terraform*
48+
.angular/
49+
.gradle
50+
build/

docker/env-localhost/env.list

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
# App env vars
2-
API_KEY=ApiKeyDefaultValue
3-
MANAGEMENT_API_URL=http://localhost:19193/management
4-
CATALOG_URL=http://localhost:19193/management
5-
STORAGE_ACCOUNT=company2assets
6-
STORAGE_LINK_TEMPLATE=storageexplorer://v=1
7-
APP_THEME=theme-2
1+
# App env vars
2+
MANAGEMENT_API_URL=http://connector-c1:19193/management
3+
CATALOG_URL=http://connector-c1:19193/management
4+
STORAGE_ACCOUNT=company2assets
5+
STORAGE_LINK_TEMPLATE=storageexplorer://v=1
6+
APP_THEME=theme-2
7+
OAUTH2_ISSUER=http://localhost:8080/realms/dataspace
8+
OAUTH2_REDIRECT_PATH=/inesdata-connector-interface,
9+
OAUTH2_CLIENT_ID=management-client
10+
OAUTH2_SCOPE=openid profile email
11+
OAUTH2_RESPONSE_TYPE=code
12+
OAUTH2_SHOW_DEBUG_INFO=true
13+
OAUTH2_ALLOWED_URLS=http://connector-c1:4200

0 commit comments

Comments
 (0)