UNPKG

1.73 kBJSONView Raw
1{
2 "defaults": {
3 "supportPython2": true
4 },
5 "directories": [
6 "controllers",
7 "controllers/test"
8 ],
9 "partials": {
10 "param_type": "param_type.mustache"
11 },
12 "transformations": [
13 { "input": "git_push.sh.mustache", "output": "git_push.sh" },
14 { "input": "gitignore.mustache", "output": ".gitignore" },
15 { "input": "travis.mustache", "output": ".travis.yml" },
16 { "input": "tox.mustache", "output": "tox.ini" },
17 { "input": "README.mustache", "output": "README.md" },
18 { "input": "Dockerfile.mustache", "output": "Dockerfile" },
19 { "input": "dockerignore.mustache", "output": ".dockerignore" },
20 { "input": "requirements.mustache", "output": "requirements.txt" },
21 { "input": "test-requirements.mustache", "output": "test-requirements.txt" },
22 { "input": "swagger.mustache", "output": "swagger.yaml" },
23
24 { "input": "__init__.mustache", "output": "__init__.py" },
25 { "input": "__init__model.mustache", "output": "__init__model.py" },
26 { "input": "__init__test.mustache", "output": "__init__test.py" },
27 { "input": "__main__.mustache", "output": "__main__.py" },
28 { "input": "base_model_.mustache", "output": "base_model_.py" },
29 { "input": "encoder.mustache", "output": "encoder.py" },
30 { "input": "model.mustache", "output": "model.py" },
31 { "input": "setup.mustache", "output": "setup.py" },
32 { "input": "util.mustache", "output": "util.py" }
33 ],
34 "perApi": [
35 { "input": "controller.mustache", "output": "controllers/{{name}}.py" },
36 { "input": "controller_test.mustache", "output": "controllers/test/{{name}}.py" }
37 ]
38}