├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── example-nixos ├── test.nix └── warp-systemd-example.nix ├── example └── Main.hs ├── flake.lock ├── flake.nix ├── shell.nix ├── src └── Network │ └── Wai │ └── Handler │ └── Warp │ └── Systemd.hs └── warp-systemd.cabal /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/warp-systemd/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/warp-systemd/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/warp-systemd/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/warp-systemd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/warp-systemd/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | 3 | main = defaultMain 4 | -------------------------------------------------------------------------------- /example-nixos/test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/warp-systemd/HEAD/example-nixos/test.nix -------------------------------------------------------------------------------- /example-nixos/warp-systemd-example.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/warp-systemd/HEAD/example-nixos/warp-systemd-example.nix -------------------------------------------------------------------------------- /example/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/warp-systemd/HEAD/example/Main.hs -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/warp-systemd/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/warp-systemd/HEAD/flake.nix -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/warp-systemd/HEAD/shell.nix -------------------------------------------------------------------------------- /src/Network/Wai/Handler/Warp/Systemd.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/warp-systemd/HEAD/src/Network/Wai/Handler/Warp/Systemd.hs -------------------------------------------------------------------------------- /warp-systemd.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/warp-systemd/HEAD/warp-systemd.cabal --------------------------------------------------------------------------------