Skip to content

Commit

Permalink
improve README.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
joke2k committed Apr 13, 2017
1 parent 2aed426 commit 3861b41
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 8 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2013-2015, Daniele Faraglia
Copyright (c) 2013-2017, Daniele Faraglia

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
27 changes: 20 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Django-environ

Django-environ allows you to utilize 12factor inspired environment variables to configure your Django application.

|pypi| |unix_build| |windows_build| |coverage| |downloads| |license|
|pypi| |unix_build| |windows_build| |coverage| |license|


This module is a merge of:
Expand Down Expand Up @@ -162,6 +162,9 @@ There are only two classes, ``environ.Env`` and ``environ.Path``
'/home/myproject/static'
See `cookiecutter-django`_ for a concrete example on using with a django project.


Supported Types
===============

Expand Down Expand Up @@ -237,6 +240,15 @@ In order to set email configuration for django you can use this code:
vars().update(EMAIL_CONFIG)
SQLite urls
-----------

SQLite connects to file based databases. The same URL format is used, omitting the hostname,
and using the "file" portion as the filename of the database.
This has the effect of four slashes being present for an absolute
file path: sqlite:////full/path/to/your/database/file.sqlite.


Tests
=====

Expand All @@ -255,10 +267,13 @@ Django-environ is licensed under the MIT License - see the `LICENSE`_ file for d
Changelog
=========

Unreleased
----------
`0.4.2 - 13-April-2017 <https://github.com/joke2k/django-environ/compare/v0.4.1...v0.4.2>`__
------------------------------------------------------------------------------------------

- Confirm support for Django 1.11.
- Support for Redshift database URL
- Fix uwsgi settings reload problem (#55)
- Update support for django-redis urls (#109)

`0.4.1 - 13-November-2016 <https://github.com/joke2k/django-environ/compare/v0.4...v0.4.1>`__
-------------------------------------------------------------------------------------------
Expand Down Expand Up @@ -344,6 +359,8 @@ Credits
.. _Distribute: http://pypi.python.org/pypi/distribute
.. _`modern-package-template`: http://pypi.python.org/pypi/modern-package-template

.. _cookiecutter-django: https://github.com/pydanny/cookiecutter-django

.. |pypi| image:: https://img.shields.io/pypi/v/django-environ.svg?style=flat-square&label=version
:target: https://pypi.python.org/pypi/django-environ
:alt: Latest version released on PyPi
Expand All @@ -360,10 +377,6 @@ Credits
:target: https://ci.appveyor.com/project/joke2k/django-environ
:alt: Build status of the master branch on Windows

.. |downloads| image:: https://img.shields.io/pypi/dm/django-environ.svg?style=flat-square
:target: https://pypi.python.org/pypi/django-environ
:alt: Monthly downloads

.. |license| image:: https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square
:target: https://raw.githubusercontent.com/joke2k/django-environ/master/LICENSE.txt
:alt: Package license
Expand Down

0 comments on commit 3861b41

Please sign in to comment.