2022-11-23 23:15:00 +00:00
|
|
|
Contributing
|
|
|
|
============
|
|
|
|
|
|
|
|
Takahē, as an open source project, could always do with more help, and if you
|
|
|
|
want to contribute we'd love help in the following areas:
|
|
|
|
|
|
|
|
* Backend code development (Python)
|
|
|
|
* Frontend code development (HTML, CSS and very limited JavaScript)
|
|
|
|
* Visual design & UX (for our default UI, and the project site)
|
|
|
|
* Illustration (for the app, project site, and outreach materials)
|
|
|
|
* Writing (for our development and user documentation)
|
|
|
|
|
2022-11-26 22:00:46 +00:00
|
|
|
If you're interested in helping out, join `our Discord server <https://discord.gg/qvQ39tAMvf>`_
|
2022-11-23 23:15:00 +00:00
|
|
|
or email contact@jointakahe.org, and mention what you'd like to help with.
|
|
|
|
|
|
|
|
All contributors are expected to abide by our `Code of Conduct <https://jointakahe.org/conduct/>`_.
|
|
|
|
We have zero tolerance for bigotry or discrimination.
|
|
|
|
|
|
|
|
If you feel like someone is breaking the code of conduct, or is making you feel
|
|
|
|
unwelcome in a way not explicitly outlined in it, you can email us at
|
2022-11-26 22:28:36 +00:00
|
|
|
conduct@jointakahe.org.
|
2022-11-23 23:15:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
Running Locally
|
|
|
|
---------------
|
|
|
|
|
|
|
|
If you wish to run Takahē locally, these instructions will help you do that.
|
|
|
|
It is worth noting, however, that this will only really let you test the UI
|
|
|
|
and local posting/follow functionality; to test ActivityPub itself and follow
|
|
|
|
other people, your installation **must be accessible from the internet**;
|
|
|
|
doing that securely is different enough per person that it is not covered here.
|
|
|
|
|
2022-11-27 17:54:01 +00:00
|
|
|
Using Docker Compose is the fastest way to get up and running, and you will
|
|
|
|
still be able to make web changes and have them appear in real-time. Direct
|
|
|
|
installation is recommended for more advanced developers or those wishing to
|
|
|
|
use a PostgreSQL they already have.
|
|
|
|
|
|
|
|
These instructions are not suitable for running a production copy; for that,
|
|
|
|
see :doc:`installation`.
|
|
|
|
|
|
|
|
Docker
|
|
|
|
~~~~~~
|
|
|
|
|
|
|
|
The docker build process will take care of much of the above, but you just have
|
|
|
|
to be sure that you're executing it from the project root.
|
|
|
|
|
|
|
|
First, you need to build your image::
|
|
|
|
|
|
|
|
docker compose -f docker/docker-compose.yml build
|
|
|
|
|
|
|
|
Then start the ``compose`` session::
|
|
|
|
|
|
|
|
docker compose -f docker/docker-compose.yml up
|
|
|
|
|
|
|
|
At this point, you should be able to see the Web UI at http://localhost:8000
|
|
|
|
|
|
|
|
Once your session is up and running, you can make yourself a superuser account::
|
|
|
|
|
|
|
|
docker compose -f docker/docker-compose.yml exec web manage.py createsuperuser
|
|
|
|
|
|
|
|
And you can run the tests inside your container::
|
|
|
|
|
|
|
|
docker compose -f docker/docker-compose.yml exec web pytest
|
|
|
|
|
|
|
|
If you want to change the settings that Takahē is using, you can edit them
|
|
|
|
near the top of the docker-compose file; the default set are designed for a
|
|
|
|
local installation, though.
|
|
|
|
|
2022-11-23 23:15:00 +00:00
|
|
|
|
|
|
|
Direct installation
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Takahē requires Python 3.10 or above, so you'll need that first. Clone the repo::
|
|
|
|
|
2022-11-24 17:58:07 +00:00
|
|
|
git clone https://github.com/jointakahe/takahe/
|
2022-11-23 23:15:00 +00:00
|
|
|
|
|
|
|
Then, ``cd`` into that directory and create and activate a virtual environment
|
|
|
|
(you can use other options, but this is the basic example)::
|
|
|
|
|
|
|
|
python3 -m venv .venv
|
|
|
|
. .venv/bin/activate
|
|
|
|
|
|
|
|
Then install the development requirements::
|
|
|
|
|
|
|
|
pip install -r requirements-dev.txt
|
|
|
|
|
2022-11-27 17:54:01 +00:00
|
|
|
Enable the git commit hooks to do auto-formatting and linting
|
2022-11-23 23:15:00 +00:00
|
|
|
(if you don't do this, our CI system will reject your PRs until they match)::
|
|
|
|
|
|
|
|
pre-commit install
|
|
|
|
|
2022-11-26 21:58:06 +00:00
|
|
|
You will need to set up some development settings (you can edit `.env` later)::
|
2022-11-23 23:15:00 +00:00
|
|
|
|
2022-11-26 21:58:06 +00:00
|
|
|
cp development.env .env
|
2022-11-23 23:15:00 +00:00
|
|
|
|
|
|
|
You can run the web interface to see it at http://localhost:8000::
|
|
|
|
|
|
|
|
./manage.py runserver
|
|
|
|
|
|
|
|
You will need to run Stator in order to have background actions work::
|
|
|
|
|
|
|
|
./manage.py runstator
|
|
|
|
|
|
|
|
Make yourself a superuser account in order to log in:
|
|
|
|
|
|
|
|
./manage.py createsuperuser
|
|
|
|
|
|
|
|
And you can run the tests with pytest::
|
|
|
|
|
|
|
|
pytest
|
|
|
|
|
2022-11-27 17:54:01 +00:00
|
|
|
If you want to edit settings, you can edit the ``.env`` file.
|
2022-11-27 02:21:48 +00:00
|
|
|
|
2022-11-26 21:58:06 +00:00
|
|
|
|
|
|
|
Coding Guidelines
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
We have linters, typechecking and formatters enabled for the project; ensure these
|
|
|
|
are set up locally by running `pre-commit install`, otherwise your pull request
|
|
|
|
will fail its testing phase.
|
|
|
|
|
|
|
|
Comment anything weird, unusual or complicated; if in doubt, leave a comment.
|
|
|
|
|
|
|
|
Don't use overly complex language constructs - like double-nested list comprehensions -
|
|
|
|
when a simple, understandable version is possible instead. We optimise for code
|
|
|
|
readability.
|
|
|
|
|
|
|
|
All features should be accessible without JavaScript if at all possible; this doesn't
|
|
|
|
mean that we can't have nice JavaScript user interfaces and affordances, but all
|
|
|
|
basic functionality *should* be accessible without it.
|
|
|
|
|
|
|
|
We use `HTMX <https://htmx.org/>`_ for dynamically loading content, and
|
2022-11-27 02:21:48 +00:00
|
|
|
`Hyperscript <https://hyperscript.org/>`_ for most interactions rather than raw
|
2022-11-26 21:58:06 +00:00
|
|
|
JavaScript. If you can accomplish what you need with these tools, please use them
|
|
|
|
rather than adding JS.
|