新增专为分离端提供的接口Web服务

This commit is contained in:
thinkgem
2022-02-21 16:20:38 +08:00
parent 3aef4ad672
commit 6655214eb2
59 changed files with 7805 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
-- 打开 my.ini 给 [mysqld] 增加如下配置:
-- sql_mode=ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
set global read_only=0;
create user 'jeesite'@'%' identified by 'jeesite';
create database jeesite DEFAULT CHARSET 'utf8' COLLATE 'utf8_general_ci';
grant all privileges on jeesite.* to 'jeesite'@'%' identified by 'jeesite';
flush privileges;