A re-usable Django app to quickly deploy a page for the ACME challenge
Project description
A re-usable Django app to quickly deploy a page for the ACME challenge
Documentation
The full documentation is at https://django-acme.readthedocs.io.
Quickstart
Install Django ACME:
pip install django-acme
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'acme_challenge',
...
)
Define these 2 settings:
ACME_CHALLENGE_URL_SLUG = os.getenv('ACME_CHALLENGE_URL_SLUG')
ACME_CHALLENGE_TEMPLATE_CONTENT = os.getenv('ACME_CHALLENGE_TEMPLATE_CONTENT')
Add the Django ACME’s URL patterns:
from acme_challenge import urls as acme_challenge_urls
urlpatterns = [
...
url(r'^', include(acme_challenge_urls)),
...
]
Features
TODO
Running Tests
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install -r requirements_test.txt (myenv) $ python runtests.py
Credits
Tools used in rendering this package:
History
0.1.0 (2016-11-16)
First release on PyPI.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-acme-0.2.0.tar.gz
(5.5 kB
view details)
File details
Details for the file django-acme-0.2.0.tar.gz
.
File metadata
- Download URL: django-acme-0.2.0.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c44ea1a92fdca6221c2e67affb908f88ff9f1400593e50b84db9226bdf57ec1 |
|
MD5 | c22b0a1afec1d0f01625e6bba287a3e5 |
|
BLAKE2b-256 | d2b23866a8fc84f819e3be513485fa3e9bcde959700de71bd92c4833c66098c9 |