File tree 2 files changed +13
-1
lines changed
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -47,3 +47,15 @@ When you have multiple versions you may want to tag some version as **latest**:
47
47
# tag the version VERSION of project PROJECT as latest
48
48
curl -X PUT http://localhost:8000/api/PROJECT/VERSION/tags/latest
49
49
```
50
+
51
+
52
+ ## Advanced config.json
53
+
54
+ It is possible to configure some things after the fact.
55
+
56
+ 1 . Create a ` config.json ` file
57
+ 2 . Mount it inside your docker container ` --volume /path/to/config.json:/var/www/html/config.json `
58
+
59
+ Supported config options:
60
+
61
+ * headerHTML
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export default {
42
42
}
43
43
},
44
44
async created () {
45
- const config = ProjectRepository .getConfig ()
45
+ const config = await ProjectRepository .getConfig ()
46
46
if (config .hasOwnProperty (' headerHTML' )){
47
47
this .header = config .headerHTML
48
48
}
You can’t perform that action at this time.
0 commit comments