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.
1 parent 134d166 commit 234ab70Copy full SHA for 234ab70
.evergreen/scripts/run-atlas-server.sh
@@ -0,0 +1,13 @@
1
+#!/bin/bash
2
+
3
+set -eu
4
5
+HERE=$(dirname ${BASH_SOURCE:-$0})
6
7
+# Try to source the env file.
8
+if [ -f $HERE/env.sh ]; then
9
+ echo "Sourcing env file"
10
+ source $HERE/env.sh
11
+fi
12
13
+uv run $HERE/run_atlas_server.py "$@"
.evergreen/scripts/stop-atlas-server.sh
@@ -0,0 +1,14 @@
+HERE="$( cd -- "$HERE" > /dev/null 2>&1 && pwd )"
14
+uv run $HERE/stop_atlas_server.py "$@"
0 commit comments