We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 474127f commit 0e49f4eCopy full SHA for 0e49f4e
1 file changed
.devcontainer/setupEnv.sh
@@ -1,22 +1,29 @@
1
#!/bin/sh
2
3
set -e # Exit on error
4
+echo "Pull latest code for the current branch"
5
+git fetch
6
+git pull
7
8
echo "Setting up ContentProcessor..."
9
cd ./src/ContentProcessor
10
uv sync --frozen
11
cd ../../
12
-pwd
-
13
echo "Setting up ContentProcessorApi..."
14
cd ./src/ContentProcessorAPI
15
16
17
18
echo "Installing dependencies for ContentProcessorWeb..."
19
cd ./src/ContentProcessorWeb
20
yarn install
21
22
+cd ../../
23
+
24
+echo "Setting up executable permission for shell scripts"
25
+chmod +x ./infra/scripts/docker-build.sh
26
+chmod +x ./src/ContentProcessorAPI/samples/upload_files.sh
27
+chmod +x ./src/ContentProcessorAPI/samples/schemas/register_schema.sh
28
29
echo "Setup complete! 🎉"
0 commit comments