forked from CosmWasm/cw-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcargo-generate.toml
More file actions
26 lines (22 loc) · 882 Bytes
/
cargo-generate.toml
File metadata and controls
26 lines (22 loc) · 882 Bytes
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
[template]
# Files listed here will not be processed by the template engine when a project is generated.
# This is needed when files contains curly brackets as in `v4-cargo-cache-{{ arch }}-{{ checksum "Cargo.lock" }}`.
# The files will be copied 1:1 to the target project. To avoid shipping them completely add them to `.genignore`.
exclude = [".circleci/config.yml"]
[placeholders.minimal]
type = "bool"
prompt = """The full template includes some example logic in case you're new to CosmWasm smart contracts.
The minimal template assumes you already know how to write your own logic, and doesn't get in your way.
Would you like to generate the minimal template?"""
default = false
[hooks]
post = ["post-script.rhai"]
[conditional.'minimal']
ignore = [
"Developing.md",
"Importing.md",
"Publishing.md",
".gitpod.yml",
".gitpod.Dockerfile",
"tests/",
]