diff --git a/app.yaml b/app.yaml index eec2dad..7002b2b 100644 --- a/app.yaml +++ b/app.yaml @@ -29,9 +29,3 @@ handlers: - url: /.* script: main.py secure: always - -libraries: -- name: webapp2 - version: latest -- name: jinja2 - version: latest diff --git a/config.py b/config.py index 0dab7fe..85380b7 100644 --- a/config.py +++ b/config.py @@ -7,7 +7,7 @@ # The server name for local_dev mode. Make sure the port matches what you use. 'local_server': 'http://localhost:8080', # Server name for your deployed AppEngine instance - 'prod_server': None, + 'prod_server': 'project-cmdrdata', # OAuth client ID. Must match what you set at https://foursquare.com/oauth. 'client_id': 'LNB0FOSEKS4QPOQW2HTAXVRGQIBU22RAP4PWVCIHILK3DSUF', # OAuth callback/redirect URI. Must match what you set at https://foursquare.com/oauth. @@ -35,5 +35,5 @@ # Replace 'None' with the class object of your app. It must inherit from the # provided AbstractApp class. -# import YOUR_CLASS_HERE -APP_CLASS = None +from cmdrdata.cmdrdata import CmdrData +APP_CLASS = CmdrData