mirror of
https://github.com/sileht/bird-lg.git
synced 2024-11-29 10:04:43 +01:00
added more stuff to gitignore (logs, venv, etc.)
This commit is contained in:
parent
6a7bd7f228
commit
1cd21536be
54
.gitignore
vendored
54
.gitignore
vendored
|
@ -1,2 +1,52 @@
|
||||||
*.pyc
|
# Python
|
||||||
*.pyo
|
*.py[co]
|
||||||
|
*.egg
|
||||||
|
*.egg-info
|
||||||
|
dist
|
||||||
|
build
|
||||||
|
eggs
|
||||||
|
parts
|
||||||
|
bin
|
||||||
|
var
|
||||||
|
sdist
|
||||||
|
tmp
|
||||||
|
develop-eggs
|
||||||
|
share
|
||||||
|
.installed.cfg
|
||||||
|
pip-log.txt
|
||||||
|
|
||||||
|
# Nose
|
||||||
|
.coverage
|
||||||
|
.tox
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
*.mo
|
||||||
|
|
||||||
|
# Mr Developer
|
||||||
|
.mr.developer.cfg
|
||||||
|
|
||||||
|
# Others
|
||||||
|
*~
|
||||||
|
*#
|
||||||
|
.#*
|
||||||
|
*.orig
|
||||||
|
data
|
||||||
|
lg.log*
|
||||||
|
|
||||||
|
# Virtualenv
|
||||||
|
.Python
|
||||||
|
include
|
||||||
|
lib
|
||||||
|
local
|
||||||
|
man
|
||||||
|
|
||||||
|
# Sphinx
|
||||||
|
doc/build/
|
||||||
|
|
||||||
|
# Database
|
||||||
|
db/*
|
||||||
|
|
||||||
|
# Local development
|
||||||
|
local.yaml
|
||||||
|
local.ini
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue