Skip to content

Commit a7b2322

Browse files
committed
docs: ✏️ 更新readme.md
1 parent f6a670b commit a7b2322

File tree

2 files changed

+43
-35
lines changed

2 files changed

+43
-35
lines changed

README.md

+43-35
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
![toolbox](https://socialify.git.ci/aoaostar/toolbox/image?description=1&forks=1&issues=1&logo=https%3A%2F%2Fraw.githubusercontent.com%2Faoaostar%2Ftoolbox%2Fmaster%2Fpublic%2Fstatic%2Fimages%2Flogo.png&name=1&owner=1&pattern=Floating%20Cogs&pulls=1&stargazers=1&theme=Light)
22

3-
43
### 🎉 What's this?
4+
55
这是一款`在线工具箱`程序,您可以通过安装扩展增强她的功能
66
通过插件模板的功能,您也可以把她当做网页导航来使用~
77
觉得该项目不错的可以给个`Star`~
@@ -10,76 +10,84 @@
1010

1111
* <https://tool.aoaostar.com>
1212

13-
1413
### 🍹 演示图
14+
1515
![](docs/images/view_1.png)
1616
![](docs/images/view_2.png)
1717
![](docs/images/view_4.png)
1818
![](docs/images/view_3.gif)
1919

2020
## 🎑 说明
21-
> 严禁用于非法用途
21+
22+
> 严禁用于非法用途
2223
2324
### 😺 文档
25+
2426
[插件编写](docs/Plugin.md)
2527
[Github Oauth 配置](docs/Github_Oauth.md)
2628
[Plugin Template 使用](docs/Plugin_Template.md)
27-
[Plugin Permission 使用](docs/Plugin_Permission.md)
29+
[Plugin Permission 使用](docs/Plugin_Permission.md)
2830

2931
### 🎊 环境要求
3032

3133
* `PHP` >= 7.2.5
3234
* `MySQL` >= 5.7
3335
* `fileinfo`扩展
3436
* 使用`Redis`缓存需安装`Redis`扩展
35-
* 去除禁用函数`proc_open``putenv``shell_exec``proc_get_status`(必须是命令行的PHP版本,你装了多个PHP版本,命令行版本的PHP和你的网站配置的PHP可能不是同一个)
37+
* 去除禁用函数`proc_open``putenv``shell_exec``proc_get_status`(
38+
必须是命令行的PHP版本,你装了多个PHP版本,命令行版本的PHP和你的网站配置的PHP可能不是同一个,嫌麻烦可以下载`full`包)
3639

3740
### 🚠 部署
3841

39-
* 下载`Release`代码
40-
* 设置运行目录为`public`
41-
* 关闭防跨站(`open_basedir`
42-
* 设置伪静态
43-
* 去除静态文件代理
42+
1. 下载`Release`代码
43+
2. 设置运行目录为`public`
44+
3. 关闭防跨站(`open_basedir`
45+
4. 设置伪静态
46+
5. 去除静态文件代理
4447
+ 打开`nginx`配置
4548
+ 删除图中选中的内容
46-
![](docs/images/problem_1.png)
49+
![](docs/images/problem_1.png)
4750

48-
* 安装依赖
49-
> `full`包,已安装依赖,无需重复安装
51+
6. 安装依赖
52+
> `full`包,已安装依赖,无需重复安装
5053
+ 配置阿里镜像源
51-
```
52-
composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/
53-
```
54+
```
55+
composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/
56+
```
5457
+ 升级compose
55-
```
56-
composer self-update
57-
```
58+
```
59+
composer self-update
60+
```
5861
+ 安装依赖
59-
```
60-
composer install --no-dev
61-
```
62-
* 设置目录权限
62+
```
63+
composer install --no-dev
64+
```
65+
7. 设置目录权限
66+
6367
+ 一般是默认允许的(如有无法上传、无法打开页面或其他未知问题可以设置一下目录权限)
6468
+ `Apache`的所属组为`www-data`,那么就请修改`www`为`www-data`
65-
66-
```shell script
67-
chmod -R 755 *
68-
chown -R www:www *
69-
```
70-
* 打开`你的域名/install`
69+
70+
```shell script
71+
chmod -R 755 *
72+
chown -R www:www *
73+
```
74+
75+
8. 打开`你的域名/install`
7176
7277
#### 🍰 伪静态
7378
7479
* Nginx
80+
7581
```
7682
location / {
7783
if (!-e $request_filename){
7884
rewrite ^(.*)$ /index.php?s=$1 last; break;
7985
}
8086
}
8187
```
88+
8289
* Apache
90+
8391
```
8492
<IfModule mod_rewrite.c>
8593
Options +FollowSymlinks -Multiviews
@@ -96,9 +104,9 @@ location / {
96104
97105
#### 🍓 鸣谢
98106
99-
* thinkphp
100-
* vuejs
101-
* daisyui
102-
* tailwindcss
103-
* naive UI
104-
* naive UI admin
107+
* [thinkphp](https://github.com/top-think/framework)
108+
* [Vue.js](https://github.com/vuejs/vue)
109+
* [daisyUI](https://github.com/saadeghi/daisyui)
110+
* [tailwindcss](https://github.com/tailwindlabs/tailwindcss)
111+
* [Naive Ui](https://github.com/tusen-ai/naive-ui)
112+
* [Naive Ui Admin](https://github.com/jekip/naive-ui-admin)

docs/images/view_1.png

-1.04 MB
Loading

0 commit comments

Comments
 (0)