Skip to content

Commit

Permalink
Update README with v1.1.2 update
Browse files Browse the repository at this point in the history
  • Loading branch information
pmhalvor committed Feb 17, 2021
1 parent 7e3a0e7 commit 0d5cf51
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Otherwise, take a peek at the previous releases of the site, to see what


Changelog:
- 1.1.2: Radio branch now has plots showing data from Azure storage
- 1.1.1: Radio branch incorperating calls to the [Spotify API](developers.spotify.com)
- 1.0.5: Code stored in database on server. Items served dynamically using Django.
- 1.0.4: Notes stored in database on server. Page items are pulled dynamically using Django.
Expand Down
20 changes: 20 additions & 0 deletions load_env.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import json, os, sys

VERBOSE = False
if len(sys.argv)>1:
print(sys.argv[1])
VERBOSE = True


f = open('_environ.json')

var = json.load(f)

f.close()



os.environ.update(**var)

print('environment loaded:\n', var) if VERBOSE else None

Binary file added phsite/__pycache__/__init__.cpython-37.pyc
Binary file not shown.
Binary file added phsite/__pycache__/settings.cpython-37.pyc
Binary file not shown.

0 comments on commit 0d5cf51

Please sign in to comment.