forked from npryce/adr-tools
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject-specific-template.expected
47 lines (38 loc) · 1.08 KB
/
project-specific-template.expected
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
adr init adrs
adrs/0001-use-markdown-architectural-decision-records.md
mkdir -p adrs/templates
cat > adrs/templates/template.md <<EOF
---
title: "{{NUMBER}}. {{TITLE}}"
geekdocRepo: https://github.com/owncloud/ocis
geekdocEditPath: edit/master/docs/ocis/adr
geekdocFilePath: {{NEWID}}-{{TITLE_SLUG}}.md
---
* Status: [proposed | accepted | deprecated | superseded by [ADR-0005](0005-example.md) | …] <!-- optional -->
* Date: [YYYY-MM-DD when the decision was last updated] <!-- optional -->
## Context and Problem Statement
EOF
adr new Aaa Bbb
adrs/0002-aaa-bbb.md
adr new Ccc Ddd
adrs/0003-ccc-ddd.md
cat adrs/0002-aaa-bbb.md
---
title: "2. Aaa Bbb"
geekdocRepo: https://github.com/owncloud/ocis
geekdocEditPath: edit/master/docs/ocis/adr
geekdocFilePath: 0002-aaa-bbb.md
---
* Status: proposed
* Date: 1992-01-12
## Context and Problem Statement
cat adrs/0003-ccc-ddd.md
---
title: "3. Ccc Ddd"
geekdocRepo: https://github.com/owncloud/ocis
geekdocEditPath: edit/master/docs/ocis/adr
geekdocFilePath: 0003-ccc-ddd.md
---
* Status: proposed
* Date: 1992-01-12
## Context and Problem Statement