This repository has been archived by the owner on May 4, 2023. It is now read-only.
forked from joke2k/django-environ
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request joke2k#342 from joke2k/develop
Release v0.8.1
- Loading branch information
Showing
5 changed files
with
38 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ | |
|
||
|
||
__copyright__ = 'Copyright (C) 2021 Daniele Faraglia' | ||
__version__ = '0.8.0' | ||
__version__ = '0.8.1' | ||
__license__ = 'MIT' | ||
__author__ = 'Daniele Faraglia' | ||
__author_email__ = '[email protected]' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,18 @@ | ||
DICT_VAR=foo=bar,test=on | ||
|
||
# Database variables | ||
DATABASE_MYSQL_URL=mysql://bea6eb0:[email protected]/heroku_97681?reconnect=true | ||
DATABASE_MYSQL_CLOUDSQL_URL=mysql://djuser:hidden-password@//cloudsql/arvore-codelab:us-central1:mysqlinstance/mydatabase | ||
DATABASE_MYSQL_GIS_URL=mysqlgis://user:[email protected]/some_database | ||
|
||
# Cache variables | ||
CACHE_URL=memcache://127.0.0.1:11211 | ||
CACHE_REDIS=rediscache://127.0.0.1:6379/1?client_class=django_redis.client.DefaultClient&password=secret | ||
|
||
# Email variables | ||
EMAIL_URL=smtps://[email protected]:[email protected]:587 | ||
|
||
# Others | ||
URL_VAR=http://www.google.com/ | ||
PATH_VAR=/home/dev | ||
BOOL_TRUE_STRING_LIKE_INT='1' | ||
|
@@ -45,4 +53,6 @@ DATABASE_ORACLE_TNS_URL=oracle://user:password@sid | |
DATABASE_ORACLE_URL=oracle://user:password@host:1521/sid | ||
DATABASE_REDSHIFT_URL=redshift://user:password@examplecluster.abc123xyz789.us-west-2.redshift.amazonaws.com:5439/dev | ||
DATABASE_CUSTOM_BACKEND_URL=custom.backend://user:[email protected]:5430/database | ||
|
||
# Exports | ||
export EXPORTED_VAR="exported var" |