mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-21 04:39:06 +00:00
Moved all server files to server/
This commit is contained in:
11
server/scripts/setup_server_dependencies.sh
Executable file
11
server/scripts/setup_server_dependencies.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
|
||||
pip install --upgrade pip
|
||||
|
||||
cwd=$(pwd)
|
||||
last_component="${cwd##*/}"
|
||||
if [ "$last_component" = "reflector" ]; then
|
||||
pip install -r server-requirements.txt
|
||||
elif [ "$last_component" = "scripts" ]; then
|
||||
pip install -r ../server-requirements.txt
|
||||
fi
|
||||
Reference in New Issue
Block a user