This commit is contained in:
Pablo Fernandez 2023-12-01 11:18:39 +00:00
commit e5febb3345
27 changed files with 1925 additions and 1162 deletions

9
justfile Normal file
View file

@ -0,0 +1,9 @@
release:
pnpm build
echo '#!/usr/bin/env node' | cat - dist/client.js > dist/client-temp.js && mv dist/client-temp.js dist/client.js
pnpm publish --no-git-checks
docker:
docker build --no-cache -t pablof7z/nsecbunkerd .
docker push pablof7z/nsecbunkerd
ssh pablo@kind0 "docker pull pablof7z/nsecbunkerd"