summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Manfre2022-11-13 15:57:27 -0500
committerGitHub2022-11-13 13:57:27 -0700
commit5a8b6bb3d022a532562ad5fa6d629cfc48c51b46 (patch)
tree3e47d556e393d707b9ffe4a457e93e9f8b4b2d8a
parent30c208226e8eedeb6879f0b771ae9d5987d06aec (diff)
downloadtakahe-5a8b6bb3d022a532562ad5fa6d629cfc48c51b46.tar.gz
takahe-5a8b6bb3d022a532562ad5fa6d629cfc48c51b46.tar.bz2
takahe-5a8b6bb3d022a532562ad5fa6d629cfc48c51b46.zip
Improving contributing docs/process
-rw-r--r--CONTRIBUTING.md35
-rw-r--r--LICENSE26
-rw-r--r--README.md13
-rwxr-xr-xmanage.py16
-rw-r--r--requirements-dev.txt8
-rw-r--r--requirements.txt2
-rw-r--r--setup.cfg2
-rw-r--r--takahe/settings/base.py1
-rw-r--r--takahe/settings/development.py6
-rw-r--r--users/views/identity.py2
10 files changed, 107 insertions, 4 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..7c77767
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,35 @@
+# Contributing to Takahē
+
+## Getting Started
+
+Takahē requires Python 3.11
+
+Create and activate a virtual environment
+
+```
+python3 -m venv .venv
+. .venv/bin/activate
+```
+
+Install the development requirements:
+
+```
+pip install -r requirements-dev.txt
+```
+
+Enable git commit hooks:
+
+```bash
+pre-commit install
+```
+
+Try running the tests:
+
+```bash
+pytest
+```
+
+# Code of Conduct
+
+As a contributor, you can help us keep the Takahē community open and inclusive. Takahē
+follows the [Django Project Code of Conduct](https://www.djangoproject.com/conduct/).
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..e6330bc
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,26 @@
+Copyright 2022 Andrew Godwin
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions and the following disclaimer in the documentation and/or
+other materials provided with the distribution.
+
+3. Neither the name of the copyright holder nor the names of its contributors
+may be used to endorse or promote products derived from this software without
+specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/README.md b/README.md
index 5c3dc16..03359b5 100644
--- a/README.md
+++ b/README.md
@@ -8,3 +8,16 @@ Goals:
* Multiple account domains possible per server
* Mastodon client API compatible
* Async evented core for fan-out/delivery
+
+
+## Deployment
+
+### Requirements:
+
+- **Python** 3.11
+- **Postgresql** 14+
+- **Lots of patience** This is *very experimental*
+
+## Contributing
+
+If you'd like to contribute, please read [CONTRIBUTING.md](./CONTRIBUTING.md).
diff --git a/manage.py b/manage.py
index 3985c18..9641f30 100755
--- a/manage.py
+++ b/manage.py
@@ -3,10 +3,26 @@
import os
import sys
+# List of settings files that should guard against running certain commands
+GUARDED_ENVIRONMENTS = [
+ "production",
+]
+
+GUARDED_COMMANDS =[
+ "test",
+]
+
def main():
"""Run administrative tasks."""
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "takahe.settings.production")
+
+ # Guard against running tests in arbitrary environments
+ env_name = os.environ["DJANGO_SETTINGS_MODULE"].rsplit(".", 1)[-1]
+ if env_name in GUARDED_ENVIRONMENTS:
+ for cmd in sys.argv:
+ if cmd in GUARDED_COMMANDS:
+ raise Exception(f"Cannot run {cmd} in {env_name}")
try:
from django.core.management import execute_from_command_line
except ImportError as exc:
diff --git a/requirements-dev.txt b/requirements-dev.txt
new file mode 100644
index 0000000..8879356
--- /dev/null
+++ b/requirements-dev.txt
@@ -0,0 +1,8 @@
+pre-commit~=2.20.0
+-r requirements.txt
+black==22.10.0
+flake8==5.0.4
+isort==5.10.1
+pre-commit~=2.20.0
+pytest-django~=4.5.2
+pytest-httpx~=0.21
diff --git a/requirements.txt b/requirements.txt
index e897cfc..911b852 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -10,6 +10,4 @@ uvicorn~=0.19
gunicorn~=20.1.0
psycopg2~=2.9.5
bleach~=5.0.1
-pytest-django~=4.5.2
-pytest-httpx~=0.21
pydantic~=1.10.2
diff --git a/setup.cfg b/setup.cfg
index a2e3e8f..6e48bb2 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
[flake8]
-exclude = venv/*,tox/*,specs/*
+exclude = .venv/*,venv/*,tox/*,specs/*
ignore = E123,E128,E203,E266,E402,F405,E501,W503,E731,W601
max-line-length = 119
diff --git a/takahe/settings/base.py b/takahe/settings/base.py
index a2ccb98..0619c45 100644
--- a/takahe/settings/base.py
+++ b/takahe/settings/base.py
@@ -55,6 +55,7 @@ DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql_psycopg2",
"HOST": os.environ.get("POSTGRES_HOST", "localhost"),
+ "PORT": os.environ.get("POSTGRES_PORT", 5432),
"NAME": os.environ.get("POSTGRES_DB", "takahe"),
"USER": os.environ.get("POSTGRES_USER", "postgres"),
"PASSWORD": os.environ.get("POSTGRES_PASSWORD"),
diff --git a/takahe/settings/development.py b/takahe/settings/development.py
index 4e0098b..54bc35d 100644
--- a/takahe/settings/development.py
+++ b/takahe/settings/development.py
@@ -11,3 +11,9 @@ MIDDLEWARE.insert(0, "core.middleware.AlwaysSecureMiddleware")
# Ensure debug features are on
DEBUG = True
CRISPY_FAIL_SILENTLY = False
+
+ALLOWED_HOSTS = ["*"]
+CSRF_TRUSTED_ORIGINS = [
+ "http://127.0.0.1:8000",
+ "https://127.0.0.1:8000",
+]
diff --git a/users/views/identity.py b/users/views/identity.py
index d78bda1..d0f64b6 100644
--- a/users/views/identity.py
+++ b/users/views/identity.py
@@ -26,7 +26,7 @@ class ViewIdentity(TemplateView):
fetch=True,
)
posts = identity.posts.all()[:100]
- if identity.data_age > Config.load().IDENTITY_MAX_AGE:
+ if identity.data_age > Config.load().identity_max_age:
identity.transition_perform(IdentityStates.outdated)
return {
"identity": identity,