forked from eazybytes/yaml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Thanks for choosing to learn from EazyBytes
- Loading branch information
Showing
32 changed files
with
937 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"This is a key that has multiple lines": "and this is its value", | ||
"[\"Development\", \"UAT\", \"PROD\"]": [ | ||
"http://dev.eazybank.com", | ||
"http://uat.eazybank.com", | ||
"http://prod.eazybank.com" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Keys can also be complex, like multi-line objects | ||
# We use ? followed by a space to indicate the start of a complex key. | ||
? This is a key | ||
that has multiple lines | ||
: and this is its value | ||
? - Development | ||
- UAT | ||
- PROD | ||
: - http://dev.eazybank.com | ||
- http://uat.eazybank.com | ||
- http://prod.eazybank.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
{ | ||
"definitions": { | ||
"days": [ | ||
{ | ||
"weekday": { | ||
"wakeup": "6:00 AM", | ||
"activites": [ | ||
"workout", | ||
"meetings", | ||
"work", | ||
"sleep" | ||
], | ||
"sleeptime": "10:00 PM" | ||
} | ||
}, | ||
{ | ||
"weekend": { | ||
"wakeup": "8:00 AM", | ||
"activites": [ | ||
"workout", | ||
"playing", | ||
"movies", | ||
"friends", | ||
"sleep" | ||
], | ||
"sleeptime": "12:00 AM" | ||
} | ||
} | ||
] | ||
}, | ||
"schedules": { | ||
"days": { | ||
"weekdays": [ | ||
{ | ||
"monday": { | ||
"wakeup": "6:00 AM", | ||
"activites": [ | ||
"workout", | ||
"meetings", | ||
"work", | ||
"sleep" | ||
], | ||
"sleeptime": "10:00 PM" | ||
} | ||
}, | ||
{ | ||
"tuesday": { | ||
"wakeup": "6:00 AM", | ||
"activites": [ | ||
"workout", | ||
"meetings", | ||
"work", | ||
"sleep" | ||
], | ||
"sleeptime": "10:00 PM" | ||
} | ||
}, | ||
{ | ||
"wednesday": { | ||
"wakeup": "6:00 AM", | ||
"activites": [ | ||
"workout", | ||
"meetings", | ||
"work", | ||
"sleep" | ||
], | ||
"sleeptime": "10:00 PM" | ||
} | ||
}, | ||
{ | ||
"thursday": { | ||
"wakeup": "6:00 AM", | ||
"activites": [ | ||
"workout", | ||
"meetings", | ||
"work", | ||
"sleep" | ||
], | ||
"sleeptime": "10:00 PM" | ||
} | ||
}, | ||
{ | ||
"friday": { | ||
"wakeup": "6:00 AM", | ||
"activites": [ | ||
"workout", | ||
"meetings", | ||
"work", | ||
"sleep" | ||
], | ||
"sleeptime": "10:00 PM" | ||
} | ||
} | ||
], | ||
"weekends": [ | ||
{ | ||
"saturday": { | ||
"wakeup": "8:00 AM", | ||
"activites": [ | ||
"workout", | ||
"playing", | ||
"movies", | ||
"friends", | ||
"sleep" | ||
], | ||
"sleeptime": "12:00 AM" | ||
} | ||
}, | ||
{ | ||
"sunday": { | ||
"wakeup": "8:00 AM", | ||
"activites": [ | ||
"workout", | ||
"playing", | ||
"movies", | ||
"friends", | ||
"sleep" | ||
], | ||
"sleeptime": "12:00 AM" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
definitions: | ||
days: | ||
- weekday: &working | ||
wakeup: 6:00 AM | ||
activites: | ||
- workout | ||
- meetings | ||
- work | ||
- sleep | ||
sleeptime: 10:00 PM | ||
- weekend: &holiday | ||
wakeup: 8:00 AM | ||
activites: | ||
- workout | ||
- playing | ||
- movies | ||
- friends | ||
- sleep | ||
sleeptime: 12:00 AM | ||
|
||
schedules: | ||
days: | ||
weekdays: | ||
- monday: *working | ||
- tuesday: *working | ||
- wednesday: *working | ||
- thursday: *working | ||
- friday: *working | ||
weekends: | ||
- saturday: *holiday | ||
- sunday: *holiday |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
{ | ||
"definitions": { | ||
"days": [ | ||
{ | ||
"weekday": { | ||
"wakeup": "6:00 AM", | ||
"activites": [ | ||
"workout", | ||
"meetings", | ||
"work", | ||
"sleep" | ||
], | ||
"sleeptime": "10:00 PM" | ||
} | ||
}, | ||
{ | ||
"weekend": { | ||
"wakeup": "8:00 AM", | ||
"activites": [ | ||
"workout", | ||
"playing", | ||
"movies", | ||
"friends", | ||
"sleep" | ||
], | ||
"sleeptime": "12:00 AM" | ||
} | ||
} | ||
] | ||
}, | ||
"schedules": { | ||
"days": { | ||
"weekdays": [ | ||
{ | ||
"monday": { | ||
"wakeup": "6:00 AM", | ||
"activites": [ | ||
"workout", | ||
"meetings", | ||
"work", | ||
"sleep" | ||
], | ||
"sleeptime": "10:00 PM" | ||
} | ||
}, | ||
{ | ||
"tuesday": { | ||
"wakeup": "6:00 AM", | ||
"activites": [ | ||
"workout", | ||
"meetings", | ||
"work", | ||
"sleep" | ||
], | ||
"sleeptime": "10:00 PM" | ||
} | ||
}, | ||
{ | ||
"wednesday": { | ||
"wakeup": "6:00 AM", | ||
"activites": [ | ||
"workout", | ||
"meetings", | ||
"work", | ||
"sleep" | ||
], | ||
"sleeptime": "10:00 PM" | ||
} | ||
}, | ||
{ | ||
"thursday": { | ||
"wakeup": "6:00 AM", | ||
"activites": [ | ||
"workout", | ||
"meetings", | ||
"work", | ||
"sleep" | ||
], | ||
"sleeptime": "10:00 PM" | ||
} | ||
}, | ||
{ | ||
"friday": { | ||
"wakeup": "6:00 AM", | ||
"activites": [ | ||
"workout", | ||
"meetings", | ||
"work", | ||
"sleep" | ||
], | ||
"sleeptime": "12:00 AM", | ||
"nextflix": true | ||
} | ||
} | ||
], | ||
"weekends": [ | ||
{ | ||
"saturday": { | ||
"wakeup": "8:00 AM", | ||
"activites": [ | ||
"workout", | ||
"playing", | ||
"movies", | ||
"friends", | ||
"sleep" | ||
], | ||
"sleeptime": "12:00 AM" | ||
}, | ||
"nextflix": true | ||
}, | ||
{ | ||
"sunday": { | ||
"wakeup": "8:00 AM", | ||
"activites": [ | ||
"workout", | ||
"playing", | ||
"movies", | ||
"friends", | ||
"sleep" | ||
], | ||
"sleeptime": "10:00 PM" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
definitions: | ||
days: | ||
- weekday: &working | ||
wakeup: 6:00 AM | ||
activites: | ||
- workout | ||
- meetings | ||
- work | ||
- sleep | ||
sleeptime: 10:00 PM | ||
- weekend: &holiday | ||
wakeup: 8:00 AM | ||
activites: | ||
- workout | ||
- playing | ||
- movies | ||
- friends | ||
- sleep | ||
sleeptime: 12:00 AM | ||
|
||
schedules: | ||
days: | ||
weekdays: | ||
- monday: *working | ||
- tuesday: *working | ||
- wednesday: *working | ||
- thursday: *working | ||
- friday: | ||
<<: *working | ||
sleeptime: 12:00 AM | ||
nextflix: true | ||
weekends: | ||
- saturday: *holiday | ||
nextflix: true | ||
- sunday: | ||
<<: *holiday | ||
sleeptime: 10:00 PM |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"applications": [ | ||
{ | ||
"cards": { | ||
"technology": "Python", | ||
"name": "EazyCards", | ||
"team-size": 12 | ||
} | ||
}, | ||
{ | ||
"accounts": { | ||
"technology": "Java", | ||
"name": "EazyAccounts", | ||
"team-size": 50 | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Development Applications Details | ||
--- | ||
applications: | ||
- cards: | ||
name: EazyCards | ||
technology: Python | ||
team-size: 12 | ||
- accounts: | ||
name: EazyAccounts | ||
technology: Java | ||
team-size: 50 | ||
... | ||
--- | ||
# Product Applications Details | ||
applications: | ||
- loans: | ||
name: EazyLoans | ||
technology: Ruby | ||
team-size: 8 | ||
- marketing: | ||
name: EazyMarketing | ||
technology: R | ||
team-size: 4 | ||
... |
Oops, something went wrong.