-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
38 lines (38 loc) · 1.08 KB
/
cookiecutter.json
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
31
32
33
34
35
36
37
38
{
"template": "https://github.com/hypothesis/cookiecutters",
"checkout": null,
"directory": "pyapp",
"ignore": [
"bin/logger",
"conf/alembic.ini",
"conf/supervisord.conf",
"report/__main__.py",
"report/app.py",
"report/core.py",
"report/migrations/*",
"tests/unit/report/core_test.py"
],
"extra_context": {
"name": "Report",
"package_name": "report",
"slug": "report",
"short_description": "The internal global reporting product for Hypothesis.",
"python_version": "3.11.9",
"github_owner": "hypothesis",
"visibility": "public",
"copyright_holder": "Hypothesis",
"dependabot_pip_interval": "monthly",
"dependabot_npm_interval": "monthly",
"dependabot_docker_interval": "monthly",
"devdata": "yes",
"services": "yes",
"postgres": "yes",
"docker": "yes",
"__docker_namespace": "hypothesis",
"__docker_network": "report_default",
"__github_url": "https://github.com/hypothesis/report",
"__copyright_year": "2022",
"__postgres_port": "5436",
"__postgres_version": "11.5-alpine"
}
}