{"id":22621316,"url":"https://github.com/urda/django-letsencrypt","last_synced_at":"2026-02-03T09:11:42.425Z","repository":{"id":48412822,"uuid":"73903959","full_name":"urda/django-letsencrypt","owner":"urda","description":"A simple Django app to handle Let's Encrypt ACME challenges","archived":false,"fork":false,"pushed_at":"2021-12-30T07:53:53.000Z","size":334,"stargazers_count":72,"open_issues_count":0,"forks_count":9,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-12-08T11:36:58.981Z","etag":null,"topics":["django","letsencrypt","python"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/django-letsencrypt/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/urda.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-11-16T09:22:23.000Z","updated_at":"2024-09-13T06:02:53.000Z","dependencies_parsed_at":"2022-09-16T14:23:22.012Z","dependency_job_id":null,"html_url":"https://github.com/urda/django-letsencrypt","commit_stats":null,"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urda%2Fdjango-letsencrypt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urda%2Fdjango-letsencrypt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urda%2Fdjango-letsencrypt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urda%2Fdjango-letsencrypt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/urda","download_url":"https://codeload.github.com/urda/django-letsencrypt/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230527866,"owners_count":18240051,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","letsencrypt","python"],"created_at":"2024-12-08T23:07:34.775Z","updated_at":"2026-02-03T09:11:42.419Z","avatar_url":"https://github.com/urda.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Let's Encrypt App for Django\n\n`django-letsencrypt` will allow you to add, remove, and update any\n[ACME challenge](https://datatracker.ietf.org/doc/html/rfc8555) objects you may\nneed through your Django admin interface. Simply add the `ACME challenge`\nand `response` for your app to serve up the necessary information for\n[Let's Encrypt](https://letsencrypt.org/how-it-works/) validation.\n\nThis project strives to make installation, configuration, and usage a snap!\nFrom high levels of code coverage, multiple compatible python versions, multiple\nversions of Django supported, even multiple databases too!\n\nAnd of course all wrapped up and published to\n[PyPI](https://pypi.org/project/django-letsencrypt/) for standard installation!\n\n## Supported Configurations\n\n`django-letsencrypt` is tested across a number of configurations, here's what's\nsupported so far:\n\n- Python Versions Supported:\n  - `3.14` (with Django `6.0`, `5.2`)\n  - `3.13` (with Django `6.0`, `5.2`)\n  - `3.12` (with Django `6.0`, `5.2`, `4.2`)\n  - `3.11` (with Django `5.2`, `4.2`)\n  - `3.10` (with Django `5.2`, `4.2`)\n- Django Versions Supported:\n  - `6.0` minimum version `6.0.1`\n  - `5.2 LTS` minimum version `5.2.10`\n  - `4.2 LTS` minimum version `4.2.27`\n- Databases Supported:\n  - `mysql`\n  - `postgres`\n  - `sqlite`\n\n## Recent Build Status Badges\n\n- [![Linting - Master](https://github.com/urda/django-letsencrypt/actions/workflows/linting.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/linting.yaml)\n- [![Testing Django 4.2 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-42.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-42.yaml)\n- [![Testing Django 5.2 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-52.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-52.yaml)\n- [![Testing Django 6.0 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-60.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-60.yaml)\n- [![Codecov - Master](https://codecov.io/gh/urda/django-letsencrypt/branch/master/graph/badge.svg?token=yn64lBfwZr)](https://codecov.io/gh/urda/django-letsencrypt)\n\n## Installation \u0026 Configuration\n\n1. `pip install django-letsencrypt`\n\n2. Add `letsencrypt` to your `INSTALLED_APPS`\n\n```python\nINSTALLED_APPS = [\n   ... ,\n   'letsencrypt',\n   ... ,\n]\n```\n\n3. Include the `letsencrypt` in your project's `urls.py`,\n   or where applicable (usually your root `urls.py`).\n\n```python\nre_path(r'^\\.well-known/', include('letsencrypt.urls'))\n```\n\n4. Run `manage.py migrate` to create the required table for the\n   `letsencrypt` model\n\n5. Create your `ACME Challenge` objects in your Django admin interface\n\n6. Test your `ACME Challenge` objects and their responses by visiting\n   them:\n\n```\n{Django Site}/.well-known/acme-challenge/challenge_text\n```\n\n7. Enjoy your easy to manage `ACME Challenges` inside your Django project!\n\n## Example Project\n\nIf you would like a demo of how to use this application simply clone this project's\n`git` repository from [GitHub](https://github.com/urda/django-letsencrypt),\ntake a moment to read the `README.md` file within the\n[`example_project`](https://github.com/urda/django-letsencrypt/tree/master/example_project)\ndirectory, and follow the directions. That will spin up a small sample django\napplication already configured for you to try out.\n\n## Development\n\n1. Make sure you have installed [uv](https://docs.astral.sh/uv/) in your environment.\n2. Clone the repo to your development machine.\n3. Configure your `git` hooks with `git config core.hooksPath .githooks` for the project.\n4. Run `uv sync` to create the virtual environment and install required dependencies.\n5. Run `make test` for the full test suite.\n6. Run `make test-tox` to run the entire `tox` suite.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Furda%2Fdjango-letsencrypt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Furda%2Fdjango-letsencrypt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Furda%2Fdjango-letsencrypt/lists"}