Deploy and release v1.0.0 (Go Refactor) #30
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 11s
Build and Push Docker Image / deploy-on-green (push) Has been skipped

This commit was merged in pull request #30.
This commit is contained in:
2026-03-06 20:06:43 -05:00
17 changed files with 1170 additions and 311 deletions

View File

@@ -29,6 +29,7 @@
pkgs.go
pkgs.yt-dlp
];
shellHook = ''
if [ -f .env ]; then
set -a
@@ -45,6 +46,11 @@
.venv/bin/pip install -r ./app/requirements.txt
source .venv/bin/activate
fi
<<<<<<< HEAD
=======
export YTDLP_BIN=${pkgs.lib.getExe pkgs.yt-dlp}
>>>>>>> v1-refactor
'';
};
});