aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2024-12-22 09:00:02 +0100
committerPřemysl Eric Janouch <p@janouch.name>2024-12-22 09:02:10 +0100
commitd9243173ff89b248f1a909290e92a46cd308915b (patch)
tree6ac921c37b761d0050e6739c964ec23ae4036b5f
parentbd130537736d74d8d77080d9876767981df759d9 (diff)
downloadacid-d9243173ff89b248f1a909290e92a46cd308915b.tar.gz
acid-d9243173ff89b248f1a909290e92a46cd308915b.tar.xz
acid-d9243173ff89b248f1a909290e92a46cd308915b.zip
WIP: deployment
-rw-r--r--acid.yaml.example7
1 files changed, 6 insertions, 1 deletions
diff --git a/acid.yaml.example b/acid.yaml.example
index 499366e..50cf0ba 100644
--- a/acid.yaml.example
+++ b/acid.yaml.example
@@ -61,7 +61,12 @@ projects:
# Project build script.
build: |
echo Computing line count...
- find . -not -path '*/.*' -type f -print0 | xargs -0 cat | wc -l
+ find . -not -path '*/.*' -type f -print0 | xargs -0 cat | wc -l \
+ | tee count
+
+ # Project deployment script.
+ deploy: |
+ # TODO: I have to figure this all out yet.
# Time limit in time.ParseDuration format.
# The default of one hour should suffice.