OpenSlides/.gitignore

42 lines
586 B
Plaintext
Raw Normal View History

# General
2012-07-31 21:16:49 +02:00
*.pyc
*.swp
*.swo
*.log
2012-07-31 21:16:49 +02:00
*~
# Virtual Environment
.virtualenv/*
.venv/*
2015-01-16 14:18:34 +01:00
# Javascript tools and libraries
node_modules/*
2015-01-16 14:18:34 +01:00
bower_components/*
# Local user data (settings, database, media, search index, static files)
personal_data/*
openslides/static/*
collected-static/*
2012-12-16 18:28:24 +01:00
# Package building/IDE
2012-07-31 21:16:49 +02:00
docs/_build/*
*.egg-info
build/*
dist/*
2017-11-10 18:14:15 +01:00
debug/*
.DS_Store
.idea
# Unit test and coverage reports
.coverage
tests/file/*
# Plugin development
openslides_*
2017-08-23 20:51:06 +02:00
# Mypy cache for typechecking
.mypy_cache
# Development of a new client. Easier to switch branches with this entry
client/*