🎉 init

This commit is contained in:
JMARyA 2025-04-06 01:23:40 +02:00
commit f7d5193684
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
2 changed files with 21 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/examples

20
bootstrap.toml Normal file
View file

@ -0,0 +1,20 @@
[ask]
platform = { kind = "selection", prompt = "Game Platform", options = ["wine"] }
name = { kind = "text", prompt = "Game Name?" }
desc = { kind = "text", prompt = "Game Description?" }
[[actions.replace]]
from = "<GAME_TITLE>"
to_var = "name"
[[actions.replace]]
from = "<GAME_DESC>"
to_var = "desc"
[[actions.branch]]
when = { var = "platform", eq = "wine"}
branch = "wine"
[[actions.script]]
script = "setup.sh"
expose = ["name", "desc"]