快速开始
12079克隆仓库
打开终端或命令提示符,并克隆 [江湖财务] 的仓库到您的本地计算机:
git clone https://github.com/jianghujs/jianghu-finance
安装依赖
cd [项目名称]
npm install
创建数据库
根据项目下 config/config.local.example.js
中database的名称,如 jianghu_finance
,创建同步的数据库,,并运行项目下的 sql/init.sql
配置数据库
找到项目目录下 config/config.local.example.js
文件,复制一个命名为 config.local.js
,修改正确的数据库配置,如:
host: '127.0.0.1',
port: 3306,
user: 'root',
password: '123456',
启动项目
- 在终端运行:
npm run dev
- 终端会显示项目访问地址(例如:http://localhost:8000/),点击会打开浏览器,您应该能够看到项目的首页或欢迎界面。