-
Notifications
You must be signed in to change notification settings - Fork 1
Adding Lrs yetanalytics as new stack + others fixes #93
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
Open
jujusb
wants to merge
33
commits into
pumva
Choose a base branch
from
lrs-yetanalytics
base: pumva
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
6f9fc90
Add LRS service configuration and environment variables to Docker setup
jujusb abd48e7
Update allowed origins for LRS service in Docker Compose
jujusb 9fb6739
Refactor LRS service environment variables and update permissions for…
jujusb ba6e13a
Add local js-tracker setup and update Docker configurations for local…
jujusb ebf5511
Enhance local js-tracker setup by excluding node_modules and improvin…
jujusb c6f25e1
Improve local js-tracker installation by packing before installation …
jujusb 71154c4
Fix LRS service command to create authority configuration and ensure …
jujusb f64fb6e
Add README documentation for managing OIDC OAuth2 with Keycloak and A…
jujusb c2b8722
Update LimeSurvey configuration for auto-creation settings and bump O…
jujusb 4a47041
Refactor auto-creation settings in LimeSurvey configuration to use ar…
jujusb ccbe7fa
Add checks for existing Shlink certificate and key files in installat…
jujusb 600442c
Refactor certificate generation logic in Shlink installation script f…
jujusb e7376d8
Refactor Nginx configuration to use file-based includes for server_na…
jujusb 5c62f77
Refactor Keycloak login function to use lowercase for admin username …
jujusb 0102cc9
Remove migration check from checkout script to streamline initializat…
jujusb b6824a1
Add SQLite UI host subdomain to development environment configuration
jujusb 9182433
Add migration checks to startup scripts and enhance LimeSurvey versio…
jujusb 439a10b
Remove exit command from LimeSurvey version initialization script
jujusb 6af87f0
Update LimeSurvey XAPI Tracker plugin version to 1.0.2
jujusb 624cd03
Enhance Keycloak migration scripts to only update keycloak from full …
jujusb 575b106
Add update-certs command to update TLS certificates and enhance error…
jujusb 4cea401
Fix git clone branch reference for pumva repository in installation s…
jujusb b9a2e25
Apply suggestions from code review
jujusb 584ba38
Fix PostgreSQL data volume path in docker-compose.yml
jujusb fba64af
Fix PostgreSQL data volume path in docker-compose.yml If starting fre…
jujusb 9787588
fix folder name after-upgrade
jujusb 874285e
Update Keycloak error message and enhance js-tracker dependency setup…
jujusb 798ec1c
Apply suggestions from code review in docker compose of lrs
jujusb 324662b
Update Git reference branches in simva-env.dev.sh for consistency
jujusb 648fb22
Fix migrate_db function to handle wait_time argument correctly
jujusb 9259c6c
Add backup bucket name to environment variables and update MinIO poli…
jujusb bc1e5c0
fix authority.json.template configuration for LRS manager
jujusb fcac087
Fix migrate_db function to restart migrated stacks and handle wait_ti…
jujusb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
File renamed without changes.
This file contains hidden or 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
9 changes: 9 additions & 0 deletions
9
docker-stacks/02-keycloak/etc/hooks/before-upgrade.d/upgrade.sh
This file contains hidden or 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,9 @@ | ||
| #!/usr/bin/env bash | ||
| set -euo pipefail | ||
| [[ "${DEBUG:-false}" == "true" ]] && set -x | ||
|
|
||
| if [[ ${SIMVA_KEYCLOAK_VERSION%%.*} -gt 18 ]]; then | ||
| exit 0 | ||
| fi | ||
| touch "${SIMVA_CONFIG_HOME}/keycloak/simva-realm-export/.exportinprogress" | ||
| echo "$SIMVA_KEYCLOAK_VERSION" > "${SIMVA_CONFIG_HOME}/keycloak/.migration" |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,2 @@ | ||
| To test the migration script to debug it run : | ||
| ./simva uninstall 07-simva/ && rm -rf data/simva/sqlite_init && docker volume rm simva_sqlite_data && ./simva start 07-simva/ |
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.