Skip to content

Commit 259faba

Browse files
committed
Fixing the TimelineTemplate Seed to be more logical.
Adding .env* to the .gitignore so actual environment-specific env vars can be stored locally
1 parent 01cda71 commit 259faba

File tree

2 files changed

+60
-11
lines changed

2 files changed

+60
-11
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ typings/
5656

5757
# dotenv environment variables file
5858
.env
59+
.env*
5960

6061
# next.js build output
6162
.next

src/scripts/seed/TimelineTemplate.json

+59-11
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,77 @@
44
"name": "Standard Code",
55
"description": "Standard Code challenge timeline",
66
"isActive": true,
7-
"phases": [{
8-
"phaseId": "a93544bc-c165-4af4-b55e-18f3593b457a",
9-
"defaultDuration": 12345
10-
}]
7+
"phases": [
8+
{
9+
"phaseId": "aa5a3f78-79e0-4bf7-93ff-b11e8f5b398b",
10+
"defaultDuration": 24
11+
},
12+
{
13+
"phaseId": "6950164f-3c5e-4bdc-abc8-22aaf5a1bd49",
14+
"defaultDuration": 48
15+
},
16+
{
17+
"phaseId": "ad985cff-ad3e-44de-b54e-3992505ba0ae",
18+
"defaultDuration": 24
19+
},
20+
{
21+
"phaseId": "1c24cfb3-5b0a-4dbd-b6bd-4b0dff5349c6",
22+
"defaultDuration": 12
23+
},
24+
{
25+
"phaseId": "797a6af7-cd3f-4436-9fca-9679f773bee9",
26+
"defaultDuration": 12
27+
}
28+
]
1129
},
1230
{
1331
"id": "592b0e63-5503-4d21-bb79-54202ff03135",
1432
"name": "Code with final fixes",
15-
"description": "Code challenge with final fixe phase",
33+
"description": "Code challenge with final fix phase",
1634
"isActive": true,
1735
"phases": [{
18-
"phaseId": "a93544bc-c165-4af4-b55e-18f3593b457a",
19-
"defaultDuration": 111
20-
}]
36+
"phaseId": "aa5a3f78-79e0-4bf7-93ff-b11e8f5b398b",
37+
"defaultDuration": 24
38+
},
39+
{
40+
"phaseId": "6950164f-3c5e-4bdc-abc8-22aaf5a1bd49",
41+
"defaultDuration": 48
42+
},
43+
{
44+
"phaseId": "ad985cff-ad3e-44de-b54e-3992505ba0ae",
45+
"defaultDuration": 24
46+
},
47+
{
48+
"phaseId": "1c24cfb3-5b0a-4dbd-b6bd-4b0dff5349c6",
49+
"defaultDuration": 12
50+
},
51+
{
52+
"phaseId": "797a6af7-cd3f-4436-9fca-9679f773bee9",
53+
"defaultDuration": 12
54+
},
55+
{
56+
"phaseId": "3e2afca6-9542-4763-a135-96b33f12c082",
57+
"defaultDuration": 12
58+
}
59+
]
2160
},
2261
{
2362
"id": "acf94fff-8e26-4617-b96c-61a46561623a",
2463
"name": "Idea/report generation",
2564
"description": "Idea/report generation",
2665
"isActive": true,
2766
"phases": [{
28-
"phaseId": "a93544bc-c165-4af4-b55e-18f3593b457a",
29-
"defaultDuration": 222
30-
}]
67+
"phaseId": "aa5a3f78-79e0-4bf7-93ff-b11e8f5b398b",
68+
"defaultDuration": 24
69+
},
70+
{
71+
"phaseId": "6950164f-3c5e-4bdc-abc8-22aaf5a1bd49",
72+
"defaultDuration": 48
73+
},
74+
{
75+
"phaseId": "ad985cff-ad3e-44de-b54e-3992505ba0ae",
76+
"defaultDuration": 24
77+
}
78+
]
3179
}
3280
]

0 commit comments

Comments
 (0)