Software Freedom Conservancy's Website
Find a file
2024-11-18 14:46:01 -08:00
bin supporters: Add sustainer form with pre-canned amount options 2024-10-22 23:52:35 +11:00
conservancy update yearinreview year temporarily 2024-11-18 14:46:01 -08:00
deploy Add CAPTCHA to FOSSY track proposals form 2024-11-12 14:15:13 +11:00
.dockerignore Add .dockerignore to ignore everything except requirements.txt 2023-10-26 12:44:23 +11:00
.gitignore Update .gitignore for moved secrets file 2024-03-22 12:21:34 +11:00
AGPLv3 License texts 2010-09-26 18:53:20 -04:00
CC-By-SA-3.0 Added CC-By-SA-3.0 license 2010-10-03 21:59:53 -04:00
Dockerfile-debian-bookworm Switch settings to use "the one true way" approach 2024-03-20 14:10:00 +11:00
ISC_LICENSE License texts 2010-09-26 18:53:20 -04:00
manage.py Switch settings to use "the one true way" approach 2024-03-20 14:10:00 +11:00
pyproject.toml Fix trailing whitespace and missing end-of-file newline 2024-07-22 18:39:05 +10:00
README.md update kallithea urls to forgejo 2024-10-16 20:34:04 -04:00
requirements.txt Add CAPTCHA to FOSSY track proposals form 2024-11-12 14:15:13 +11:00
TODO.md Add CAPTCHA to FOSSY track proposals form 2024-11-12 14:15:13 +11:00

Software Freedom Conservancy website

This is a Python/Django-based website that runs sfconservancy.org.

Contributing

The canonical location for this repository is on Conservancys Forgejo instance.

License

The software included herein, such as the Python source files, are generally licensed AGPLv3-or-later. JavaScript source is generally GPLv3-or-later. See the notices at the top of each Javascript file for specific licensing details.

The content and text (such as the HTML files) is currently CC-BY-SA-3.0.

Server configuration

Conservancy's webserver runs on a standard Debian installation. For configuration requirements, see deploy/install.yml.

CDN

Requests to any URL starting with /videos/ are forwarded to our CDN server to reduce bandwidth use. These files are uploaded to the CDN manually via the Rackspace API. Note that the Apache rewrite rule requires that the file not exist on disk for the redirect to be applied.

Local development

Python dependencies in requirements.txt are tied to the versions available in Debian:

python3 -m pip install -r requirements.txt

To run the tests, install pytest-django and run pytest:

python3 -m pip install pytest-django
python3 -m pytest

Then run:

python3 manage.py migrate
python3 manage.py runserver

There is also a Dockerfile available if that's more convenient. See that file for details.

Deploying

To deploy, run bin/deploy. This requires SSH access to hickory.sfconservancy.org.

To check for broken links in production, run:

bin/linkcheck

Note that the Apache configuration has a significant number of aliases and redirects for historic URL changes which means that linkchecker may not run cleanly in local development.