Add fakes library: recursive JSON template engine, i18n locales, Docker workflow

This commit is contained in:
lilleman
2026-06-05 19:51:18 +02:00
parent 725126a9e9
commit 943a1d9f1b
19 changed files with 1324 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
[
{
"format": "{street-number} {street}\n{locality}, {region} {postal-code}",
"street": [
{
"format": "{name} {suffix}",
"name": ["Cedar", "Elm", "Lincoln", "Maple", "Oak", "Pine", "Washington"],
"suffix": ["Street", "Avenue", "Drive", "Lane"]
}
],
"street-number": [
{
"format": "10"
},
{
"format": "100"
},
{
"format": "1000",
"weight": 0.5
}
],
"locality": ["Austin", "Boston", "Chicago", "Denver", "Houston", "Phoenix", "Portland", "Seattle"],
"region": ["CA", "IL", "MA", "NY", "TX", "WA"],
"postal-code": [
{
"format": "10000"
}
]
}
]