1 | --- |
2 |
|
3 | server-port: 8080 |
4 | static: |
5 | /style.css: |
6 | path: static/style.css |
7 | type: text/css |
8 | templates: |
9 | - name: index |
10 | path: templates/index.html |
11 | - name: commit |
12 | path: templates/commit.html |
13 | - name: inline_commit |
14 | path: templates/inline_commit.html |
15 | - name: repository |
16 | path: templates/repository.html |
17 | - name: inline_repository |
18 | path: templates/inline_repository.html |
19 | repositories: |
20 | - name: auto-plow |
21 | description: "A wheelchair motor-propelled battery-powered ESP32-driven remote control snow plow." |
22 | branch: dev |
23 | allows: |
24 | - master |
25 | - dev |
26 | github: "https://github.com/JoshuaS3/auto-plow" |
27 | location: |
28 | dev: "/home/josh/repos/auto-plow/.git" |
29 | prod: "/home/git/auto-plow.git" |
30 | - name: joshstock.in |
31 | description: "Source for serving and static templating/compiling of https://joshstock.in." |
32 | branch: master |
33 | github: "https://github.com/JoshuaS3/joshstock.in" |
34 | location: |
35 | dev: "/home/josh/repos/joshstock.in/.git" |
36 | prod: "/home/git/joshstock.in.git" |
37 | - name: ncurses-minesweeper |
38 | description: "Terminal game of Minesweeper, implemented in C with ncurses." |
39 | branch: master |
40 | github: "https://github.com/JoshuaS3/ncurses-minesweeper" |
41 | location: |
42 | dev: "/home/josh/repos/ncurses-minesweeper/.git" |
43 | prod: "/home/git/ncurses-minesweeper.git" |
44 | - name: lognestmonster |
45 | description: "A general-purpose single-header C logging library and parser for event-based logs." |
46 | branch: dev |
47 | allows: |
48 | - master |
49 | - dev |
50 | github: "https://github.com/JoshuaS3/lognestmonster" |
51 | location: |
52 | dev: "/home/josh/repos/lognestmonster/.git" |
53 | prod: "/home/git/lognestmonster.git" |
54 |
|