We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef3e178 commit 9fa6e86Copy full SHA for 9fa6e86
scripts/generate_api_docs.sh
@@ -1,10 +1,15 @@
1
#!/bin/bash
2
# Generate API documents from the latest source code
3
4
-script_dir=`dirname $0`
5
-cd ${script_dir}/..
+set -e
+script_dir=$(dirname "$0")
6
+cd "${script_dir}/.."
7
8
+pip install -U pip
9
+pip install -U -r requirements/adapter.txt
10
+pip install -U -r requirements/async.txt
11
pip install -U pdoc3
12
+pip install .
13
rm -rf docs/reference
14
15
pdoc slack_bolt --html -o docs/reference
0 commit comments