Added missing angle brackets in README

This commit is contained in:
Sebastian Henschel 2016-11-09 15:52:09 +01:00
parent b207ad2125
commit a118b2ced5

View File

@ -23,8 +23,8 @@ Edit `apimanager/apimanager/local_settings.py`:
```python
SECRET_KEY = '<random string>'
OAUTH_API = '<your API root>' # e.g. https://api.openbankproject.com
OAUTH_CLIENT_KEY = 'key you got from the API'
OAUTH_CLIENT_SECRET = 'secret you got from the API'
OAUTH_CLIENT_KEY = '<key you got from the API>'
OAUTH_CLIENT_SECRET = '<secret you got from the API>'
DATABASES['default']['NAME'] = '<filename to use for database>' # default is 'db.sqlite3' in parent directory of git checkout
```