2ce8985747
- Add .gitignore for Node.js and PocketBase projects - Add frontend (Vue 3 + Vite + TypeScript) - Add backend (PocketBase) - Add deployment scripts and Docker compose configs Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
13 lines
209 B
Bash
13 lines
209 B
Bash
#!/bin/bash
|
|
# 启动 UAT 环境
|
|
|
|
cd "$(dirname "$0")/../"
|
|
|
|
export $(cat .env.uat | xargs)
|
|
|
|
echo "🚀 启动 UAT 环境"
|
|
echo "📡 PocketBase: $VITE_PB_URL"
|
|
echo "🌐 Frontend Port: $VITE_PORT"
|
|
|
|
npm run dev
|