-
Notifications
You must be signed in to change notification settings - Fork 7
/
cookiecutter.json
40 lines (40 loc) · 1.21 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
39
40
{
"template": "https://github.com/hypothesis/cookiecutters",
"checkout": null,
"directory": "pyramid-app",
"ignore": [
"Dockerfile",
"tests/unit/via/app_test.py",
"via/app.py",
"tests/functional/app_test.py",
"bin/make_devdata",
"bin/make_docker_run",
"via/templates/.gitkeep"
],
"extra_context": {
"name": "Via",
"package_name": "via",
"slug": "via",
"short_description": "An app that proxies web pages and PDF files and injects the Hypothesis client so you can annotate them.",
"python_version": "3.11.9",
"port": "9082",
"github_owner": "hypothesis",
"visibility": "public",
"copyright_holder": "Hypothesis",
"dependabot_pip_interval": "monthly",
"dependabot_npm_interval": "monthly",
"dependabot_docker_interval": "monthly",
"devdata": "yes",
"frontend": "yes",
"__frontend_typechecking": "yes",
"postgres": "yes",
"docker": "yes",
"__postgres_port": "4433",
"__postgres_version": "15.3-alpine",
"__docker_namespace": "hypothesis",
"__docker_network": "via_default",
"__github_url": "https://github.com/hypothesis/via",
"__copyright_year": "2016",
"__gunicorn_bind": "unix:/tmp/gunicorn-web.sock"
}
}