You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,8 +12,7 @@ Paths below are relative to this README. Files produced during installation or a
12
12
The directory tree might look like:
13
13
14
14
```bash
15
-
$ tree -L 2 apimanager/
16
-
apimanager/
15
+
/var/www/apimanager/
17
16
+-- API-Manager
18
17
| +-- apimanager
19
18
| +-- apimanager.service
@@ -28,8 +27,6 @@ apimanager/
28
27
+-- logs
29
28
+-- static-collected
30
29
+-- venv
31
-
+-- bin
32
-
+-- lib
33
30
```
34
31
35
32
## Install dependencies
@@ -42,7 +39,7 @@ $ source ../venv/bin/activate
42
39
43
40
## Configure settings
44
41
45
-
Edit`apimanager/apimanager/local_settings.py`:
42
+
Create and edit`apimanager/apimanager/local_settings.py`:
46
43
47
44
```python
48
45
# Used internally by Django, can be anything of your choice
@@ -61,6 +58,8 @@ DATABASES = {
61
58
}
62
59
```
63
60
61
+
Changes to this file will not be overwritten on updates. The settings there can override anything specified in `apimanager/apimanager/settings.py`.
62
+
64
63
The application's authentication is API-driven. However, to make use of Django's authentication framework and sessions, there is a minimal requirement of a database. Per default, sqlite is used, but you can configure any Django-supported backend you want. Please lookup the appropriate documentation.
0 commit comments