feat: add fly taskfile

This commit is contained in:
truxnell 2024-04-24 14:37:41 +10:00
parent b90ce48b61
commit b8a523d13c
2 changed files with 18 additions and 3 deletions

View file

@ -0,0 +1,14 @@
---
# go-task runner file
version: "3"
tasks:
default:
silent: true
cmds:
- task -l
deploy:
desc: Deploy app
cmds:
- bash -c "doppler run -p github -c prd_vaultwarden -- fly deploy"

View file

@ -19,9 +19,10 @@
{
devShells = eachSystem (pkgs: {
default = pkgs.mkShell {
packages = [
pkgs.flyctl
pkgs.doppler
packages = with pkgs; [
flyctl
doppler
go-task
];
};
});