- Bootstrap script for creating monorepo projects - FastAPI backend templates with uv, ruff, mypy, pytest - React frontend templates with TypeScript, ESLint, Prettier - Docker Compose setup with backend, frontend, and database - 9 development and CI scripts - Gitea Actions CI/CD workflows - Comprehensive documentation (8 files) - 45 template files for complete project structure - Automated verification script (all tests pass) - Based on coding-agent-rules standards
25 lines
428 B
Bash
Executable File
25 lines
428 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Start frontend development server
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/../../frontend"
|
|
|
|
echo "Starting frontend server..."
|
|
|
|
if [ ! -f ".env" ]; then
|
|
echo "Creating .env from .env.example..."
|
|
cp .env.example .env
|
|
fi
|
|
|
|
# Install dependencies if needed
|
|
if [ ! -d "node_modules" ]; then
|
|
echo "Installing dependencies..."
|
|
npm install
|
|
fi
|
|
|
|
# Start the server
|
|
echo "Starting React development server..."
|
|
npm start
|