Coder Social home page Coder Social logo

nukix / toolbox Goto Github PK

View Code? Open in Web Editor NEW

This project forked from netcccyun/toolbox

0.0 0.0 0.0 15.46 MB

彩虹工具箱,一个在线工具箱

License: GNU General Public License v3.0

JavaScript 16.46% PHP 31.73% CSS 18.30% Hack 0.21% HTML 33.31%

toolbox's Introduction

🎉 What's this?

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

😺 演示地址

🎑 说明

严禁用于非法用途

🎊 环境要求

  • PHP >= 7.4
  • MySQL >= 5.6
  • fileinfo扩展
  • 使用Redis缓存需安装Redis扩展

🚠 部署

  • Release页面下载源代码

  • 设置运行目录(绑定目录)为public

  • 设置伪静态

  • 如果是下载的Source code包,还需Composer安装依赖(Release页面下载的安装包不需要)

    • 配置阿里镜像源(国内服务器可选)
    composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/
    
    • 升级compose
    composer self-update
    
    • 安装依赖
    composer install --no-dev
    
  • 打开网站会自动跳转到安装页面,根据界面提示完成安装。

  • 更新方法:下载源码后直接上传覆盖即可

🍰 伪静态

  • 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>

🍓 鸣谢

  • aoaostar
  • vue
  • thinkphp
  • layui
  • layuimini
  • DashLite

toolbox's People

Contributors

netcccyun avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.