小丁到家最终版

Yin Bin 44a81ee271 feat:增加自动化部署脚本 4 달 전
app 2c004e0231 fix:清理依赖 4 달 전
bootstrap 1f69f3d3ba git(vcode-setting): 不可见字符处理 5 달 전
config 1f69f3d3ba git(vcode-setting): 不可见字符处理 5 달 전
database 2c004e0231 fix:清理依赖 4 달 전
inventory 44a81ee271 feat:增加自动化部署脚本 4 달 전
lang 1f69f3d3ba git(vcode-setting): 不可见字符处理 5 달 전
public 1f69f3d3ba git(vcode-setting): 不可见字符处理 5 달 전
resources 1f69f3d3ba git(vcode-setting): 不可见字符处理 5 달 전
routes bd7a8ba889 ok 4 달 전
script 44a81ee271 feat:增加自动化部署脚本 4 달 전
storage 1f69f3d3ba git(vcode-setting): 不可见字符处理 5 달 전
tests 1f69f3d3ba git(vcode-setting): 不可见字符处理 5 달 전
.editorconfig 1f69f3d3ba git(vcode-setting): 不可见字符处理 5 달 전
.env.example 8f311f45b3 Merge branch 'master' of ssh://gogs.yinbin.ink:30004/didong/owl-admin 5 달 전
.gitattributes 1f69f3d3ba git(vcode-setting): 不可见字符处理 5 달 전
.gitignore d6685dfd14 feat:代理商、行政区划 5 달 전
README.md 8f311f45b3 Merge branch 'master' of ssh://gogs.yinbin.ink:30004/didong/owl-admin 5 달 전
ansible.cfg 44a81ee271 feat:增加自动化部署脚本 4 달 전
ansible.log 44a81ee271 feat:增加自动化部署脚本 4 달 전
artisan 1f69f3d3ba git(vcode-setting): 不可见字符处理 5 달 전
composer.json 2c004e0231 fix:清理依赖 4 달 전
composer.lock 2c004e0231 fix:清理依赖 4 달 전
laravel10-owladmin 1f69f3d3ba git(vcode-setting): 不可见字符处理 5 달 전
package.json 1f69f3d3ba git(vcode-setting): 不可见字符处理 5 달 전
phpunit.xml 1f69f3d3ba git(vcode-setting): 不可见字符处理 5 달 전
postcss.config.js 1f69f3d3ba git(vcode-setting): 不可见字符处理 5 달 전
tailwind.config.js 1f69f3d3ba git(vcode-setting): 不可见字符处理 5 달 전
vite.config.js 1f69f3d3ba git(vcode-setting): 不可见字符处理 5 달 전

README.md

安装

- 1.创建.env配置
    复制项目根目录.env.example文件,将其改名或重命名为.env
- 2.修改.env配置
    DB_CONNECTION=sqlite    // 将sqlite改为mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=            // 填写数据库名称
    DB_USERNAME=root        // 数据库账号
    DB_PASSWORD=            // 数据库密码
- 3.创建.env配置填写的同名数据库
- 4.开启redis服务
- 5.执行composer命令
    ```composer i```
- 6.执行迁移文件
    ```php artisan migrate```
- 7.安装owl-admin
    ```php artisan admin:install```
- 8.开启serve服务
    ```php artisan serve```