Commit 4fb18d3a by Miles Richardson

set API_ROOT from os env var PARSE_API_ROOT

parent bfb76788
...@@ -19,7 +19,9 @@ import json ...@@ -19,7 +19,9 @@ import json
from parse_rest import core from parse_rest import core
API_ROOT = 'https://api.parse.com/1' import os
API_ROOT=os.environ.get('PARSE_API_ROOT')
ACCESS_KEYS = {} ACCESS_KEYS = {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment