Spaces:
Running
Running
Create entrypoint.sh
Browse files- entrypoint.sh +8 -0
entrypoint.sh
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/bash
|
2 |
+
set -e
|
3 |
+
|
4 |
+
echo "Fetching config..."
|
5 |
+
curl -s -o /app/librechat.yaml "$CONFIG_PATH"
|
6 |
+
|
7 |
+
echo "Starting backend..."
|
8 |
+
npm run backend
|