
Some checks failed
CI/CD Pipeline / Test Suite (push) Has been cancelled
CI/CD Pipeline / Security Audit (push) Has been cancelled
CI/CD Pipeline / Build Docker Image (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / Performance Benchmarks (push) Has been cancelled
CI/CD Pipeline / Cleanup (push) Has been cancelled
15 lines
337 B
Bash
Executable File
15 lines
337 B
Bash
Executable File
#!/bin/bash
|
|
# Quick development script for documentation
|
|
|
|
set -e
|
|
|
|
echo "🚀 Starting documentation development server..."
|
|
echo "Documentation will be available at: http://localhost:3000"
|
|
echo "Press Ctrl+C to stop"
|
|
|
|
# Change to project root
|
|
cd "$(dirname "$0")/.."
|
|
|
|
# Start mdBook serve with live reload
|
|
mdbook serve --open --port 3000
|