- Created new finance application based on Vue Vben Admin - Implemented transaction management, category management, and loan tracking - Added person management for tracking financial relationships - Integrated budget management and financial analytics - Added data import/export functionality - Implemented responsive design for mobile support - Added comprehensive testing with Playwright 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
460 B
Bash
Executable File
20 lines
460 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "启动 TokenRecords 财务管理系统开发服务器..."
|
|
echo "=================================="
|
|
echo ""
|
|
echo "切换到项目目录..."
|
|
cd /Users/hahaha/TokenRecords-Vben/apps/web-finance
|
|
|
|
echo "当前目录: $(pwd)"
|
|
echo ""
|
|
echo "启动开发服务器..."
|
|
echo "访问地址: http://localhost:5666/"
|
|
echo "用户名: vben"
|
|
echo "密码: 123456"
|
|
echo ""
|
|
echo "=================================="
|
|
echo ""
|
|
|
|
# 启动开发服务器
|
|
pnpm dev |