Initial commit: Complete project-bootstrap tool
- 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
This commit is contained in:
14
templates/scripts/dev/start-database.sh
Executable file
14
templates/scripts/dev/start-database.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Start database container
|
||||
|
||||
set -e
|
||||
|
||||
cd "$(dirname "$0")/../../deploy"
|
||||
|
||||
echo "Starting database container..."
|
||||
|
||||
docker compose up -d database
|
||||
|
||||
echo "Database started successfully"
|
||||
echo "Connection string: postgresql://postgres:postgres@localhost:5432/appdb"
|
||||
Reference in New Issue
Block a user