diff options
| author | Přemysl Eric Janouch <p@janouch.name> | 2024-12-22 09:00:02 +0100 | 
|---|---|---|
| committer | Přemysl Eric Janouch <p@janouch.name> | 2024-12-22 09:02:10 +0100 | 
| commit | d9243173ff89b248f1a909290e92a46cd308915b (patch) | |
| tree | 6ac921c37b761d0050e6739c964ec23ae4036b5f | |
| parent | bd130537736d74d8d77080d9876767981df759d9 (diff) | |
| download | acid-d9243173ff89b248f1a909290e92a46cd308915b.tar.gz acid-d9243173ff89b248f1a909290e92a46cd308915b.tar.xz acid-d9243173ff89b248f1a909290e92a46cd308915b.zip | |
WIP: deployment
| -rw-r--r-- | acid.yaml.example | 7 | 
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. | 
