Skip to content

Commit

Permalink
version bump and readme update;
Browse files Browse the repository at this point in the history
  • Loading branch information
jamstooks committed Apr 2, 2018
1 parent 1b8e1a3 commit 4f9e609
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ This app provides a quick way to serve that page.

## Installation

pip install https://github.com/jamstooks/django-acme-challenge/archive/v1.0.zip
PyPI:

pip install django-acme-challenge

Github:

pip install https://github.com/jamstooks/django-acme-challenge/archive/v1.1.zip

Add `'acme_challenge',` to your installed apps and update your urls.py:

Expand All @@ -26,4 +32,10 @@ Just set two variables:
- `ACME_CHALLENGE_URL_SLUG`
- `ACME_CHALLENGE_TEMPLATE_CONTENT`

`http://your-domain-name/.well-known/acme-challenge/ACME_CHALLENGE_URL_SLUG` will then serve the value of `ACME_CHALLENGE_TEMPLATE_CONTENT` for validation.
`http://your-domain-name/.well-known/acme-challenge/ACME_CHALLENGE_URL_SLUG`
will then serve the value of `ACME_CHALLENGE_TEMPLATE_CONTENT`
for validation.

### Compatibility

Support Django 1.8 - 2.0 and Python 2 & 3
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def read(fname):

setup(
name='django-acme-challenge',
version='1.0',
version='1.2',
description="A quick tool to serve the acme-challenge verification page.",
author='Benjamin W Stookey',
author_email='[email protected]',
Expand All @@ -22,8 +22,8 @@ def read(fname):
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Framework :: Django',
],
test_suite='tests.main',
Expand Down

0 comments on commit 4f9e609

Please sign in to comment.