File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ set -euo pipefail
2626readonly PROJECT_ROOT=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd) "
2727readonly FRONTEND_DIR=" ${PROJECT_ROOT} /surfsense_web"
2828readonly EXTENSION_DIR=" ${PROJECT_ROOT} /surfsense_browser_extension"
29+ readonly BACKEND_DIR=" ${PROJECT_ROOT} /surfsense_backend"
2930
3031ENV_NAME=" ${SURFSENSE_ENV_NAME:- surfsense} "
3132PYTHON_VERSION=" ${SURFSENSE_PYTHON_VERSION:- 3.12} "
@@ -96,7 +97,7 @@ main() {
9697 conda activate ${ENV_NAME}
9798
98992. Start the backend API:
99- (cd ${BACKEND_DIR} && uvicorn app.app:app --reload)
100+ (cd " ${BACKEND_DIR} " && uvicorn app.app:app --reload)
100101 or refer to DEPLOYMENT_GUIDE.md for production options.
101102
1021033. Start the web app (if npm was available):
107108}
108109
109110main " $@ "
110-
You can’t perform that action at this time.
0 commit comments