Skip to content

Commit 6a8d38d

Browse files
committed
Fix more on samples to examples renaming
1 parent e64b4f4 commit 6a8d38d

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/maintainers_guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ $ ./scripts/run_tests.sh tests/scenario_tests/test_app.py
8484

8585
#### Run the Samples
8686

87-
If you make changes to `slack_bolt/adapter/*`, please verify if it surely works by running the apps under `samples` directory.
87+
If you make changes to `slack_bolt/adapter/*`, please verify if it surely works by running the apps under `examples` directory.
8888

8989
```bash
9090
# Install all optional dependencies
@@ -95,12 +95,12 @@ $ export SLACK_SIGNING_SECRET=***
9595
$ export SLACK_BOT_TOKEN=xoxb-***
9696

9797
# Standalone apps
98-
$ cd samples/
98+
$ cd examples/
9999
$ python app.py
100100
$ python async_app.py
101101

102102
# Flask apps
103-
$ cd samples/flask
103+
$ cd examples/flask
104104
$ FLASK_APP=app.py FLASK_ENV=development flask run -p 3000
105105

106106
# In another terminal

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Build Status][travis-image]][travis-url]
66
[![Codecov][codecov-image]][codecov-url]
77

8-
A Python framework to build Slack apps in a flash with the latest platform features. Check the [document](https://slack.dev/bolt-python/) and [samples](https://github.com/slackapi/bolt-python/tree/main/samples) to know how to use this framework.
8+
A Python framework to build Slack apps in a flash with the latest platform features. Check the [document](https://slack.dev/bolt-python/) and [examples](https://github.com/slackapi/bolt-python/tree/main/examples) to know how to use this framework.
99

1010
## Setup
1111

@@ -141,9 +141,9 @@ python app.py
141141
ngrok http 3000
142142
```
143143

144-
If you want to use another async Web framework (e.g., Sanic, FastAPI, Starlette), take a look at the built-in adapters and their samples.
144+
If you want to use another async Web framework (e.g., Sanic, FastAPI, Starlette), take a look at the built-in adapters and their examples.
145145

146-
* [The Bolt app samples](https://github.com/slackapi/bolt-python/tree/main/samples)
146+
* [The Bolt app examples](https://github.com/slackapi/bolt-python/tree/main/examples)
147147
* [The built-in adapters](https://github.com/slackapi/bolt-python/tree/main/slack_bolt/adapter)
148148

149149
# Feedback

examples/getting_started/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export SLACK_SIGNING_SECRET=<your-signing-secret>
2323
git clone https://github.com/slackapi/bolt-python.git
2424

2525
# Change into this project
26-
cd bolt-python/samples/getting_started/
26+
cd bolt-python/examples/getting_started/
2727

2828
# Setup virtual environment
2929
python3 -m venv .venv

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
long_description_content_type="text/markdown",
3232
url="https://github.com/slackapi/bolt-python",
3333
packages=setuptools.find_packages(
34-
exclude=["samples", "integration_tests", "tests", "tests.*",]
34+
exclude=["examples", "integration_tests", "tests", "tests.*",]
3535
),
3636
include_package_data=True, # MANIFEST.in
3737
install_requires=["slack_sdk>=3.0.0a9",],

0 commit comments

Comments
 (0)