Compare commits

...
5 Commits
Author SHA1 Message Date
admin c7fdd2968a Merge branch 'develop' into 'main'
Release 2.1

See merge request signalytic/client-external/streamline/streamline-emr!11
2025-01-23 08:41:47 +00:00
alec.turner 1348cc95ae Merge branch 'drop-demo-data-from-v2' into 'develop'
drop demo data from v2

See merge request signalytic/client-external/streamline/streamline-emr!9
2025-01-22 16:13:41 +00:00
alec.turner 4e9b4e9331 bump image to v2.1
A new v2.1 image is available in the gitlab registry - the config file is
updated accordingly.
2025-01-22 08:11:18 -08:00
alec.turner 733b01c244 update version to 2.1 and add reset condition for v2.0
v2.0 was built using a demo database that should not have been present. v2.1
uses the same application, but should start with a clean database. This change
bumps the version to 2.1 and resets the database if the currently installed
version is 1.* or 2.0.
2025-01-22 08:09:49 -08:00
admin ea343e472e Merge branch 'app-version-2' into 'main'
Release 2

See merge request signalytic/client-external/streamline/streamline-emr!8
2025-01-16 15:53:06 +00:00
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -1,13 +1,13 @@
{ {
"name": "streamline-emr", "name": "streamline-emr",
"org": "streamline", "org": "streamline",
"version": "2.0", "version": "2.1",
"platforms": [ "platforms": [
"linux/arm64" "linux/arm64"
], ],
"images": { "images": {
"linux/arm64": { "linux/arm64": {
"registry.gitlab.com/signalytic/client-external/streamline/streamline-emr/arm64:v2": "streamline-emr:latest" "registry.gitlab.com/signalytic/client-external/streamline/streamline-emr/arm64:v2.1": "streamline-emr:latest"
} }
} }
} }
+3 -3
View File
@@ -36,9 +36,9 @@ if [ -f ${INSTALL_ROOT}/stop ]; then
${INSTALL_ROOT}/stop ${INSTALL_ROOT}/stop
fi fi
# reset data for any v1 installations # reset data for any v1 or v2.0 installations
if grep -q "^1." ${VERSION_FILE}; then if grep -q "^1." ${VERSION_FILE} || grep -q "^2.0" ${VERSION_FILE}; then
echo "v1 installation detected - resetting data" echo "demo installation detected (v$(cat ${VERSION_FILE})) - resetting data"
rm -rf ${DATA_ROOT} rm -rf ${DATA_ROOT}
fi fi