mirror of
https://github.com/mindverse/Second-Me.git
synced 2026-07-24 00:23:27 +00:00
* feat:remove conda from setup * cool. more code about removing conda & env * optimize script * add python check * optimize setup * optimize setup * add warning info * optimize check * add node check & npm check * add cmake install suggestion * add poetry suggestion * add python command check * add python tools * add poetry * add graphrag poetry install command optimization * active poetry shell * fix duplicated log * avoid poetry multipul active * add sqlite3 check * optimize sqlite3 setup suggestion * optimize * add gitignore * reverse compose detect
12 lines
296 B
Bash
Executable file
12 lines
296 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Source the logging utilities
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
source "${SCRIPT_DIR}/utils/logging.sh"
|
|
|
|
# enter frontend directory
|
|
cd lpm_frontend
|
|
|
|
# start frontend service
|
|
log_info "Starting frontend service on port ${LOCAL_FRONTEND_PORT}..."
|
|
npm run dev
|