summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-05 14:22:36 -0600
committerAndrew Godwin2022-11-05 14:22:36 -0600
commit57e33f1215ee28f557f2765ec7864c6741d61e26 (patch)
tree14bcfe474ab291b9b894378dfe5ac10e0e3600af
parentd77dcf62b4005a0f36ef2fa7ba6d3651d2ef38d7 (diff)
downloadtakahe-57e33f1215ee28f557f2765ec7864c6741d61e26.tar.gz
takahe-57e33f1215ee28f557f2765ec7864c6741d61e26.tar.bz2
takahe-57e33f1215ee28f557f2765ec7864c6741d61e26.zip
Add README and initial setup.cfg
-rw-r--r--README.md8
-rw-r--r--setup.cfg26
2 files changed, 34 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..39b48f8
--- /dev/null
+++ b/README.md
@@ -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
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..bd9cef4
--- /dev/null
+++ b/setup.cfg
@@ -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