fix details

This commit is contained in:
Wenjie Zhang 2024-07-26 14:13:15 +08:00
parent aa1e357a98
commit 9e082e8ab1
2 changed files with 7 additions and 6 deletions

1
.gitignore vendored
View File

@ -32,3 +32,4 @@ src/data
neo4j*
*/package-lock.json
src/config/base.yaml
web/package-lock.json

12
run.sh
View File

@ -11,13 +11,13 @@ stop_services() {
# Trap signals to stop services
trap stop_services SIGINT SIGTERM
# Start the frontend service
cd web
npm run server &
# Start the backend service
cd ../src
# Start the server
cd src
python api.py
# Start the frontend service
cd ../web
npm run server &
# Wait for all background jobs to finish
wait