OpenSlides/.gitignore
Oskar Hahn 10b3bb6497 Update to channels 2
* geis does not work with channels2 and never will be (it has to be python now)
* pytest
* rewrote cache system
* use username instead of pk for admin user in tests
2018-08-22 06:30:11 +02:00

43 lines
600 B
Plaintext

# General
*.pyc
*.swp
*.swo
*.log
*~
# Virtual Environment
.virtualenv/*
.venv/*
# Javascript tools and libraries
node_modules/*
bower_components/*
# Local user data (settings, database, media, search index, static files)
personal_data/*
openslides/static/*
collected-static/*
# Package building/IDE
docs/_build/*
*.egg-info
build/*
dist/*
debug/*
.DS_Store
.idea
# Unit test and coverage reports
.coverage
tests/file/*
.pytest_cache
# Plugin development
openslides_*
# Mypy cache for typechecking
.mypy_cache
# Development of a new client. Easier to switch branches with this entry
client/*