We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73fb67b commit dd9f6e6Copy full SHA for dd9f6e6
run_opendream.sh
@@ -1,9 +1,13 @@
1
#!/bin/bash
2
3
-# Start uvicorn server
4
-pip install -r requirements.txt && uvicorn opendream.server:app --reload &
+python3 -m venv venv
+source venv/bin/activate
5
+
6
+pip install --upgrade pip
7
+pip install -r requirements.txt
8
9
+uvicorn opendream.server:app --reload &
10
-# Change directory to webapp/opendream-ui and start npm
11
cd webapp/opendream-ui && npm install && npm run start &
12
13
wait
0 commit comments