Update example gitignore to latest version
This commit is contained in:
parent
1c409601db
commit
7024686ff2
4 changed files with 25 additions and 3 deletions
|
|
@ -4,8 +4,9 @@
|
|||
|
||||
- add docstrings to `Bot`
|
||||
- change `KILL_REPLY` and `RESTART_REPLY` to be optional in `Bot`
|
||||
- fix echobot example
|
||||
- fix imports
|
||||
- update echobot example to newest version
|
||||
- update example gitignore to newest version
|
||||
|
||||
## 1.1.3 (2019-04-19)
|
||||
|
||||
|
|
|
|||
17
examples/echo/.gitignore
vendored
Normal file
17
examples/echo/.gitignore
vendored
Normal 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
|
||||
|
|
@ -8,6 +8,10 @@ lib/
|
|||
lib64
|
||||
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
|
||||
cookie_jar
|
||||
*.cookie
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue