forked from snarktank/ralph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprd.json.example
More file actions
30 lines (30 loc) · 896 Bytes
/
prd.json.example
File metadata and controls
30 lines (30 loc) · 896 Bytes
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
{
"project": "Hello World",
"branchName": "ralph/hello-world",
"description": "Example Hello World Workflow.",
"userStories": [
{
"id": "US-001",
"title": "Hello World in Bash",
"description": "As an Administrator, I need a 'Hello World' script in Bash.",
"acceptanceCriteria": [
"A hw.sh script exists in the root directory that outputs the text 'Hello World.'"
],
"priority": 1,
"passes": false,
"notes": ""
},
{
"id": "US-002",
"title": "Hello World in Python",
"description": "As an Administrator, I need a 'Hello World' script in Python.",
"acceptanceCriteria": [
"A hw.py script exists in the root directory that outputs the text 'Hello World'.",
"The hw.py script has execute permissions."
],
"priority": 2,
"passes": false,
"notes": ""
}
]
}