🚀傲星工具箱,一个在线工具箱
Go to file
2022-10-04 21:11:30 +08:00
app refactor: 💡 优化数据搜索 2022-10-04 21:11:30 +08:00
config feat: 🎸 增加用户OAuth管理 2022-09-19 17:39:43 +08:00
docs refactor: 💡 去除无效路由规则 2022-09-20 11:47:43 +08:00
plugin refactor: 💡 去除无效路由规则 2022-09-20 11:47:43 +08:00
public feat: 🎸 增加用户OAuth管理 2022-09-19 17:39:43 +08:00
route refactor: 💡 去除无效路由规则 2022-09-20 11:47:43 +08:00
runtime feat: 🎸 重构用户系统、OAuth、插件系统、后台系统 2022-09-11 17:21:25 +08:00
vendor first commit 2021-12-22 23:12:13 +08:00
view style: 💄 插件logo引用增加版本号参数 2022-09-19 17:49:24 +08:00
.env.example 🚩 新增搜索功能 2022-02-19 18:59:13 +08:00
.gitignore 完善插件安装logo设置问题 2021-12-25 16:41:17 +08:00
.travis.yml first commit 2021-12-22 23:12:13 +08:00
composer.json docs: ✏️ 修正环境要求 2022-09-19 21:09:31 +08:00
install.sql feat: 🎸 重构用户系统、OAuth、插件系统、后台系统 2022-09-11 17:21:25 +08:00
LICENSE first commit 2021-12-22 23:12:13 +08:00
README.md docs: ✏️ 修正环境要求 2022-09-19 21:09:31 +08:00
think first commit 2021-12-22 23:12:13 +08:00

toolbox

🎉 What's this

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

😺 演示地址

🍹 演示图

🎑 说明

严禁用于非法用途

😺 文档

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

🎊 环境要求

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

🚠 部署

  • 下载源代码

  • 设置运行目录为public

  • 关闭防跨站(open_basedir

  • 设置伪静态

  • 去除静态文件代理

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

    • 配置阿里镜像源
    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