* change the package to workspace concept * add provider name and change default model * add the node_modules to git ignore * change the npm runs to use workspace * fix the start scripts to use the workspace * update the uv.lock * updated instructions * update the docker build to use the npm workspace * Update package-lock.json after merge to sync workspace dependencies * fix merge conflict
17 lines
478 B
Bash
Executable file
17 lines
478 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Start the Hindsight documentation server
|
|
# This script starts a local Docusaurus development server for the documentation
|
|
|
|
set -e
|
|
|
|
# Get the project root directory
|
|
PROJECT_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
cd "$PROJECT_ROOT" || exit 1
|
|
|
|
echo "Starting documentation server..."
|
|
echo ""
|
|
echo "Starting Docusaurus development server..."
|
|
echo "Documentation will be available at: http://localhost:3000"
|
|
echo ""
|
|
npm run start -w hindsight-docs
|