Skip to content

Commit 33ddefd

Browse files
committed
verbose
1 parent b2bf6c7 commit 33ddefd

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

rabbitmq/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ rabbitmqctl add_user <username> <passwd>
118118
* [ ] `authenticate_user`
119119

120120
### Authorisation 权限管理 Access Control
121-
[测试代码](./permission/)
121+
[测试代码](./permission/read.py)
122122
* `set_permissions`
123123
```
124124
rabbitmqctl set_permissions --vhost <hostname> <username> ".*" ".*" ".*" 最后三个是conf write read

run_server.sh

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
#!/bin/bash
22
# Xiang Wang([email protected])
33

4-
if [ -d _build ]
5-
then
6-
rm -r _build
7-
fi
4+
# if [ -d _build ]
5+
# then
6+
# rm -r _build
7+
# fi
88

99
sphinx-autobuild \
10-
-v \
10+
--verbose \
11+
--nitpicky \
12+
--exception-on-warning \
13+
--fail-on-warning \
14+
--show-traceback \
15+
--color \
1116
--host 0.0.0.0 \
1217
--port 18002 \
1318
. _build/html/ \
@@ -16,9 +21,11 @@ sphinx-autobuild \
1621
--re-ignore "\.git" \
1722
--re-ignore "_static" \
1823
--re-ignore "\.*\.swp" \
24+
--re-ignore "\.*\.rdb" \
1925
--re-ignore "terminal_link.json" \
2026
--re-ignore "terminal配置.json" \
2127
--re-ignore "software\/terminal\/.*" \
28+
--re-ignore "node_modules" \
2229
--ignore "terminal_link.json" \
2330
--ignore "terminal配置.json" \
2431
--ignore "software/terminal/terminal_link.json" \

0 commit comments

Comments
 (0)