We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 519ce9f commit c28942bCopy full SHA for c28942b
update.sh
@@ -0,0 +1,20 @@
1
+#! /usr/bin/env nix-shell
2
+#! nix-shell shell.nix -i bash
3
+
4
+if [ -n "$DEBUG" ]; then
5
+ set -x
6
+fi
7
8
+set -o errexit
9
+set -o nounset
10
+set -o pipefail
11
12
+copier -x template/** -x copier.yml.keep -x *.py -x CHANGELOG.md \
13
+ "${@}" \
14
+ -d generator=controller \
15
+ -d nix=True \
16
+ -d license=MIT \
17
+ -d repo_url=https://github.com/fastapi-mvc/copier-controller \
18
+ -d copyright_date=2022 \
19
+ -a .generator.yml \
20
+ update ./.
0 commit comments