Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EW-1047: Add TSP System on Dev Environments #1005

Merged
merged 20 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions ansible/group_vars/all/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -399,28 +399,32 @@ configuration_all:
server: true
client: false
nuxtclient: false
TSP_API_CLIENT_BASE_URL:
server: true
client: false
nuxtclient: false
TSP_API_CLIENT_TOKEN_LIFETIME_MS:
mamutmk5 marked this conversation as resolved.
Show resolved Hide resolved
server: true
client: false
nuxtclient: false
TSP_SCHOOL_SYNCER__SCHOOL_LIMIT:
value: "10"
server: true
client: false
nuxtclient: false
TSP_SYNC_SCHOOL_LIMIT:
value: "10"
server: true
client: false
nuxtclient: false
TSP_SYNC_DATA_LIMIT:
value: "150"
server: true
client: false
nuxtclient: false
TSP_SYNC_SCHOOL_DAYS_TO_FETCH:
value: "1"
server: true
client: false
nuxtclient: false
TSP_SYNC_DATA_DAYS_TO_FETCH:
value: "1"
server: true
client: false
nuxtclient: false
Expand All @@ -430,7 +434,6 @@ configuration_all:
client: false
nuxtclient: false
FEATURE_TSP_SYNC_ENABLED:
value: "false"
server: true
client: false
nuxtclient: false
Expand Down
11 changes: 10 additions & 1 deletion ansible/group_vars/all/instance_config_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,13 @@ FEATURE_CTL_TOOLS_ENABLED: "true"
FEATURE_LTI_TOOLS_ENABLED: "false"
FEATURE_LTI_TOOLS_TAB_ENABLED: "false"
FEATURE_CTL_TOOLS_TAB_ENABLED: "true"
FEATURE_COLUMN_BOARD_EXTERNAL_TOOLS_ENABLED: "true"
FEATURE_COLUMN_BOARD_EXTERNAL_TOOLS_ENABLED: "true"

# TSP Sync
FEATURE_TSP_SYNC_ENABLED: "true"
mkreuzkam-cap marked this conversation as resolved.
Show resolved Hide resolved
TSP_SYNC_SCHOOL_LIMIT: "10"
TSP_SYNC_DATA_LIMIT: "150"
TSP_SYNC_SCHOOL_DAYS_TO_FETCH: "1"
TSP_SYNC_DATA_DAYS_TO_FETCH: "1"
TSP_API_CLIENT_BASE_URL: ""
TSP_API_CLIENT_TOKEN_LIFETIME_MS: "30000"
6 changes: 5 additions & 1 deletion ansible/host_vars/thr_host/cfg.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
NOT_AUTHENTICATED_REDIRECT_URL: https://test.schulportal-thueringen.de/cas/login?service=https://{{DOMAIN}}/tsp-login
NOT_AUTHENTICATED_REDIRECT_URL: "https://{{ DOMAIN }}/login?strategy=tsp"
TSP_API_BASE_URL: https://test.schulportal-thueringen.de
ROOT_URL_REDIRECT: https://test.schulportal-thueringen.de/thueringer_schulcloud

NEXTCLOUD_REDIRECT_URL: https://nextcloud-thr.dbildungscloud.dev/apps/files/?dir=/
NEXTCLOUD_BASE_URL: https://nextcloud-thr.dbildungscloud.dev/

FEATURE_TSP_SYNC_ENABLED: "true"
TSP_API_CLIENT_BASE_URL: https://test2.schulportal-thueringen.de/tip-ms/api
TSP_SYNC_SCHOOL_DAYS_TO_FETCH: "3650"
1 change: 1 addition & 0 deletions ansible/host_vars/thr_host/with.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
WITH_TSP_SYNC: "true"