forked from ITISFoundation/cookiecutter-osparc-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
36 lines (36 loc) · 1.22 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
{
"author_name": "Your full name",
"author_email": "Your address email (eq. [email protected])",
"author_affiliation": "University of Anywhere, Department of something",
"contact_email": "{{ cookiecutter.author_email }}",
"project_name": "Name of the project",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}",
"project_package_name": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_short_description": "{{ cookiecutter.project_name }}",
"project_type": [
"computational"
],
"docker_base": [
"alpine:3.7",
"alpine:3.8",
"centos:7",
"custom:special-image",
"python:3.6",
"python:3.7",
"python:3.8",
"python:3.6-slim",
"python:3.7-slim",
"python:3.8-slim",
"ubuntu:18.04"
],
"number_of_inputs": 2,
"number_of_outputs": 1,
"project_git_repo": "https://github.com/ITISFoundation/{{ cookiecutter.project_slug }}",
"git_username": "Yourusername",
"default_docker_registry": "itisfoundation",
"release_date": "{% now 'utc', '%Y' %}",
"version": "0.1.0",
"_extensions": [
"jinja2_time.TimeExtension"
]
}