mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
8d98dc8ffe
I just got bitten by a file being caught by the .gitignore, which shouldn't have been, and am now pissed off with the .gitignore. I have basically declared bankruptcy on it and started again.
37 lines
388 B
Plaintext
37 lines
388 B
Plaintext
# filename patterns
|
|
*~
|
|
.*.swp
|
|
.#*
|
|
*.deb
|
|
*.egg
|
|
*.egg-info
|
|
*.lock
|
|
*.pyc
|
|
*.tac
|
|
_trial_temp/
|
|
_trial_temp*/
|
|
|
|
# stuff that is likely to exist when you run a server locally
|
|
/*.signing.key
|
|
/*.tls.crt
|
|
/*.tls.key
|
|
/uploads
|
|
/media_store/
|
|
|
|
# IDEs
|
|
/.idea/
|
|
/.ropeproject/
|
|
/.vscode/
|
|
|
|
# build products
|
|
/.coverage*
|
|
!/.coveragerc
|
|
/.tox
|
|
/build/
|
|
/coverage.*
|
|
/dist/
|
|
/docs/build/
|
|
/htmlcov
|
|
/pip-wheel-metadata/
|
|
|