- npm install
- 复制
config.local.example.js
为config.local.js
- 并且修改数据库配置为自己的数据库, 例如:
host: '127.0.0.1', port: 3306, user: 'root', password: '123456', database: 'jianghujs_enterprise_1table_crud'
- 启动 npm run dev
# 数据库初始化
create database `jianghujs_enterprise_1table_crud` default character set utf8mb4 collate utf8mb4_bin;
use jianghujs_enterprise_1table_crud;
# 运行 sql/init.sql 文件
- admin/123456