--- a/oauth/settings/client_settings.py.tmpl Tue Feb 16 15:43:00 2016 +0100
+++ b/oauth/settings/client_settings.py.tmpl Tue Feb 16 15:46:00 2016 +0100
@@ -0,0 +1,15 @@
+
+class ClientSettings(object):
+
+ CLIENT_ID = ''
+ CLIENT_SECRET = ''
+
+ # Oauth server config
+ BASE_URL = 'http://127.0.0.1:5000/api/'
+ REQUEST_TOKEN_URL = None
+ ACCESS_TOKEN_URL = 'http://127.0.0.1:5000/oauth/token'
+ AUTHORIZE_URL = 'http://127.0.0.1:5000/oauth/authorize'
+ REQUEST_TOKEN_PARAMS = {'scope': ''}
+
+ # Renkan config
+ CREATE_RENKAN_URL = ''
\ No newline at end of file