- ahserver web app on port 9190 - DB: rag (test/test123, utf8mb4) - 7 data models: knowledge_bases, documents, document_chunks, entities, entity_relations, subscriptions, engine_configs, usage_logs - 4 CRUD definitions: knowledge_bases, documents, subscriptions, engine_configs - build.sh clones all foundation modules + rag-pipeline + services - independent venv, bricks frontend, RBAC support
8 lines
229 B
Bash
Executable File
8 lines
229 B
Bash
Executable File
#!/bin/bash
|
|
cdir=$(cd "$(dirname "$0")"; pwd)
|
|
source py3/bin/activate
|
|
cd $cdir
|
|
nohup py3/bin/python app/ragserver.py > logs/ragserver_stdout.log 2>&1 &
|
|
echo $! > ragserver.pid
|
|
echo "RAG Server started (pid $(cat ragserver.pid))"
|