├── .envrc ├── .gitignore ├── Makefile ├── README.md ├── commands ├── commands.go ├── deploy │ └── deploy.go └── push │ └── push.go ├── default.nix ├── go.mod ├── go.sum ├── main.go └── util ├── cli_helpers.go ├── commands.go ├── git.go └── logger.go /.envrc: -------------------------------------------------------------------------------- 1 | use nix 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnarg/pushnix/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnarg/pushnix/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnarg/pushnix/HEAD/README.md -------------------------------------------------------------------------------- /commands/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnarg/pushnix/HEAD/commands/commands.go -------------------------------------------------------------------------------- /commands/deploy/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnarg/pushnix/HEAD/commands/deploy/deploy.go -------------------------------------------------------------------------------- /commands/push/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnarg/pushnix/HEAD/commands/push/push.go -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnarg/pushnix/HEAD/default.nix -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnarg/pushnix/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnarg/pushnix/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnarg/pushnix/HEAD/main.go -------------------------------------------------------------------------------- /util/cli_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnarg/pushnix/HEAD/util/cli_helpers.go -------------------------------------------------------------------------------- /util/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnarg/pushnix/HEAD/util/commands.go -------------------------------------------------------------------------------- /util/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnarg/pushnix/HEAD/util/git.go -------------------------------------------------------------------------------- /util/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnarg/pushnix/HEAD/util/logger.go --------------------------------------------------------------------------------