Commit 936a250f by Miles Richardson

default to parse.com API if no env var is supplied

parent 4fb18d3a
......@@ -20,7 +20,8 @@ import json
from parse_rest import core
import os
API_ROOT=os.environ.get('PARSE_API_ROOT')
API_ROOT = os.environ.get('PARSE_API_ROOT') or 'https://api.parse.com/1'
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