🚀傲星工具箱,一个在线工具箱
Go to file
2022-10-09 15:20:48 +08:00
.github/workflows chore: 🤖 更新包添加依赖更新 2022-10-07 16:01:36 +08:00
app fix: 🐛 php7版本插件中心无法搜索插件 2022-10-09 15:05:20 +08:00
config feat: 🎸 插件接口请求添加验证码验证支持 2022-10-07 16:13:18 +08:00
docs docs: ✏️ 更新插件编写文档 2022-10-09 15:20:48 +08:00
plugin refactor: 💡 No updates at all 2022-10-07 22:05:44 +08:00
public chore: 🤖 添加前端项目模块 2022-10-05 17:24:28 +08:00
route feat: 🎸 插件接口请求添加验证码验证支持 2022-10-07 16:13:18 +08:00
runtime refactor: 💡 添加数据库导入文件和升级文件 2022-10-05 15:16:27 +08:00
vendor first commit 2021-12-22 23:12:13 +08:00
view feat: 🎸 新增权限访问 2022-10-04 21:16:06 +08:00
.env.example 🚩 新增搜索功能 2022-02-19 18:59:13 +08:00
.gitignore 完善插件安装logo设置问题 2021-12-25 16:41:17 +08:00
.gitmodules chore: 🤖 添加前端项目模块 2022-10-05 17:24:28 +08:00
.travis.yml first commit 2021-12-22 23:12:13 +08:00
composer.json feat: 🎸 插件接口请求添加验证码验证支持 2022-10-07 16:13:18 +08:00
install.sql refactor: 💡 添加数据库导入文件和升级文件 2022-10-05 15:16:27 +08:00
LICENSE first commit 2021-12-22 23:12:13 +08:00
README.md chore: 🤖 添加actions自动打包 2022-10-05 14:18:12 +08:00
think first commit 2021-12-22 23:12:13 +08:00

toolbox

🎉 What's this

这是一款在线工具箱程序,您可以通过安装扩展增强她的功能
通过插件模板的功能,您也可以把她当做网页导航来使用~
觉得该项目不错的可以给个Star~

😺 演示地址

🍹 演示图

🎑 说明

严禁用于非法用途

😺 文档

插件编写
Github Oauth 配置
Plugin Template 使用
Plugin Permission 使用

🎊 环境要求

  • PHP >= 7.2.5
  • MySQL >= 5.7
  • fileinfo扩展
  • 使用Redis缓存需安装Redis扩展
  • 去除禁用函数proc_openputenvshell_execproc_get_status(必须是命令行的PHP版本你装了多个PHP版本命令行版本的PHP和你的网站配置的PHP可能不是同一个)

🚠 部署

  • 下载Release代码

  • 设置运行目录为public

  • 关闭防跨站(open_basedir

  • 设置伪静态

  • 去除静态文件代理

    • 打开nginx配置
    • 删除图中选中的内容
  • 安装依赖

    full包,已安装依赖,无需重复安装

    • 配置阿里镜像源
    composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/
    
    • 升级compose
    composer self-update
    
    • 安装依赖
    composer install --no-dev
    
  • 设置目录权限

    • 一般是默认允许的(如有无法上传、无法打开页面或其他未知问题可以设置一下目录权限)
    • Apache的所属组为www-data,那么就请修改wwwwww-data
    chmod -R 755 *
    chown -R www:www *
    
  • 打开你的域名/install

🍰 伪静态

  • Nginx
location / {
	if (!-e $request_filename){
		rewrite  ^(.*)$  /index.php?s=$1  last;   break;
	}
}
  • Apache
<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

😊 donate

donate

🍓 鸣谢

  • thinkphp
  • vuejs
  • daisyui
  • tailwindcss
  • naive UI
  • naive UI admin