We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6235892 + cafd9f0 commit 2531067Copy full SHA for 2531067
apps/gateway/scripts/run.sh
@@ -1,10 +1,12 @@
1
#!/bin/sh
2
3
+set -eu
4
+
5
DATABASE_FILE=${GATEWAY_DATABASE_URL#file:}
6
EMPTY_DATABASE_FILE="/app/gateway.tmpl.db"
7
-if [[ ! -f "$DATABASE_FILE" ]]; then
8
+if [ ! -f "$DATABASE_FILE" ]; then
9
cp "$EMPTY_DATABASE_FILE" "$DATABASE_FILE"
10
fi
11
-node ./dist/main.js
12
+exec node ./dist/main.js
apps/gateway/src/entry-client.tsx
@@ -3,7 +3,7 @@ import ReactDOM from 'react-dom/client';
import { Root } from './Root';
-import '@douglasneuroinformatics/libui/tailwind/globals.css';
+import '@opendatacapture/react-core/globals.css';
const ROOT_PROPS = window.__ROOT_PROPS__;
0 commit comments