mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 16:46:57 +00:00
Merge pull request #68 from chrisjsimpson/master
Updated README install instructions for Installation (development) by…
This commit is contained in:
commit
b02eb0a582
12
README.md
12
README.md
@ -36,12 +36,24 @@ $ virtualenv --python=python3 ../venv
|
||||
$ source ../venv/bin/activate
|
||||
(venv)$ pip install -r requirements.txt
|
||||
```
|
||||
Note: if this fails you may be missing the `python3-tk` and `tk` packages:
|
||||
|
||||
```bash
|
||||
$ sudo apt install python3-tk tk
|
||||
```
|
||||
|
||||
## Configure settings
|
||||
|
||||
Create and edit `apimanager/apimanager/local_settings.py`:
|
||||
|
||||
```python
|
||||
import os
|
||||
BASE_DIR = '/your/base/dir'
|
||||
EXCLUDE_APPS = []
|
||||
EXCLUDE_FUNCTIONS = []
|
||||
EXCLUDE_URL_PATTERN = []
|
||||
API_EXPLORER_APP_NAME = 'API Explorer app name'
|
||||
API_DATEFORMAT = '%Y-%m-%dT%H:%M:%S.%fZ'
|
||||
# Used internally by Django, can be anything of your choice
|
||||
SECRET_KEY = '<random string>'
|
||||
# API hostname, e.g. https://api.openbankproject.com
|
||||
|
||||
Loading…
Reference in New Issue
Block a user