Update example gitignore to latest version

This commit is contained in:
Joscha 2019-04-20 19:01:25 +00:00
parent 1c409601db
commit 7024686ff2
4 changed files with 25 additions and 3 deletions

View file

@ -4,8 +4,9 @@
- add docstrings to `Bot` - add docstrings to `Bot`
- change `KILL_REPLY` and `RESTART_REPLY` to be optional in `Bot` - change `KILL_REPLY` and `RESTART_REPLY` to be optional in `Bot`
- fix echobot example
- fix imports - fix imports
- update echobot example to newest version
- update example gitignore to newest version
## 1.1.3 (2019-04-19) ## 1.1.3 (2019-04-19)

17
examples/echo/.gitignore vendored Normal file
View file

@ -0,0 +1,17 @@
# python stuff
__pycache__/
# venv stuff
bin/
include/
lib/
lib64
pyvenv.cfg
# bot stuff
#
# These files are ignored because they may contain sensitive information you
# wouldn't want in your repo. If you need to have a config file in your repo,
# store a bot.conf.default with default settings.
*.conf
*.cookie

View file

@ -8,6 +8,10 @@ lib/
lib64 lib64
pyvenv.cfg pyvenv.cfg
# config files # bot stuff
#
# These files are ignored because they may contain sensitive information you
# wouldn't want in your repo. If you need to have a config file in your repo,
# store a bot.conf.default with default settings.
*.conf *.conf
cookie_jar *.cookie