10b3bb6497
* 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
43 lines
600 B
Plaintext
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/*
|