mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 07:10:59 +00:00
Add README and initial setup.cfg
This commit is contained in:
parent
d77dcf62b4
commit
57e33f1215
2 changed files with 34 additions and 0 deletions
8
README.md
Normal file
8
README.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# takahē
|
||||||
|
|
||||||
|
A *very experimental* Fediverse server for microblogging/"toots".
|
||||||
|
|
||||||
|
Goals:
|
||||||
|
|
||||||
|
* Can run on serverless hosting
|
||||||
|
* Multiple account domains possible per server
|
26
setup.cfg
Normal file
26
setup.cfg
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
[flake8]
|
||||||
|
exclude = venv/*,tox/*,specs/*
|
||||||
|
ignore = E123,E128,E203,E266,E402,F405,E501,W503,E731,W601
|
||||||
|
max-line-length = 119
|
||||||
|
|
||||||
|
[isort]
|
||||||
|
profile = black
|
||||||
|
multi_line_output = 3
|
||||||
|
|
||||||
|
[mypy]
|
||||||
|
warn_unused_ignores = True
|
||||||
|
|
||||||
|
[mypy-django.*]
|
||||||
|
ignore_missing_imports = True
|
||||||
|
|
||||||
|
[mypy-urlman.*]
|
||||||
|
ignore_missing_imports = True
|
||||||
|
|
||||||
|
[mypy-crispy_forms.*]
|
||||||
|
ignore_missing_imports = True
|
||||||
|
|
||||||
|
[mypy-cryptography.*]
|
||||||
|
ignore_missing_imports = True
|
||||||
|
|
||||||
|
[mypy-*.migrations.*]
|
||||||
|
ignore_errors = True
|
Loading…
Reference in a new issue