-
Notifications
You must be signed in to change notification settings - Fork 14
/
cookiecutter.json
45 lines (45 loc) · 1.33 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
41
42
43
44
45
{
"template": "https://github.com/hypothesis/cookiecutters",
"checkout": null,
"directory": "pyramid-app",
"ignore": [
"Dockerfile",
"lms/app.py",
"lms/db.py",
"tests/unit/lms/app_test.py",
"lms/pshell.py",
"lms/migrations/env.py",
"tests/functional/app_test.py",
"bin/make_db",
"bin/make_devdata",
"lms/templates/.gitkeep"
],
"extra_context": {
"name": "LMS",
"package_name": "lms",
"slug": "lms",
"short_description": "An app for integrating Hypothesis with Learning Management Systems (LMS's).",
"python_version": "3.11.9",
"port": "8001",
"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": "5433",
"__postgres_version": "15.6-alpine",
"__docker_namespace": "hypothesis",
"__docker_network": "lms_default",
"__github_url": "https://github.com/hypothesis/lms",
"__copyright_year": "2017",
"__parallel_unit_tests": true,
"__tests_runner_type": "ubuntu-latest-32-cores",
"__lint_runner_type": "ubuntu-latest-32-cores"
}
}