added photo service

This commit is contained in:
2025-10-05 19:41:15 +02:00
parent a18521ae9a
commit 62be03e72a
10 changed files with 206 additions and 3 deletions

19
implohq.nu Normal file
View File

@@ -0,0 +1,19 @@
def main [] {
nu ./implohq.nu --help
}
def "main deploy" [] {
let env_files = ["cloud", "database", "password-manager"]
mkdir dist
$env_files | each { |env_file|
sops decrypt $".env.($env_file).secret" | save -f $"./dist/.env.($env_file)"
}
cp -rf compose.yml dist
cp -rf dynamic dist/
cp -rf services dist/
scp -r dist/* implohq:.services/homelab/
}