Software Freedom Conservancy's Website
Find a file
Ben Sturmfels 2a99a0c81a
Switch from url() to path()
Path is the new way to handle simpler routing rules.
2024-03-18 17:51:33 +11:00
bin Switch from "restart apache2" to "reload apache2" 2024-03-16 09:07:11 +11:00
conservancy Switch from url() to path() 2024-03-18 17:51:33 +11:00
deploy Remove conservancy-www-update timer-based deploy 2024-03-13 14:50:48 +11:00
.dockerignore Add .dockerignore to ignore everything except requirements.txt 2023-10-26 12:44:23 +11:00
.gitignore add vizio pdfs to gitignore, they are on webserver 2023-11-02 11:37:41 -07:00
AGPLv3 License texts 2010-09-26 18:53:20 -04:00
ASPEN.md added ASPEN.md document 2015-02-27 12:12:12 -06:00
CC-By-SA-3.0 Added CC-By-SA-3.0 license 2010-10-03 21:59:53 -04:00
Dockerfile-debian-bookworm Improve Docker docs 2024-02-02 13:38:27 +11:00
ISC_LICENSE License texts 2010-09-26 18:53:20 -04:00
manage.py Rename "www" directory to "conservancy" 2023-10-25 13:01:21 +11:00
README.md Document the new deployment approach 2024-03-13 15:55:00 +11:00
requirements.txt Switch content tests to pytest 2024-03-13 14:26:01 +11:00
TODO.md podjango: Fix linting warnings 2024-02-23 15:02:04 +11:00

Software Freedom Conservancy website

Contributing

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

License

The software included herein, such as the Python source files, are generally licensed AGPLv3-or-later. The Javascript is a hodgepodge of licensing, but all of it is compatible with AGPLv3-or-later. See the notices at the top of each Javascript file for 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/ansible/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

You'll need a copy of conservancy/djangocommonsettings.py, a file that not committed to the repository that has database settings and other environment-specific config.

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, log on to hickory.sfconservancy.org and run linkchecker https://sfconservancy.org/.

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.