🙌🏻 | Relago support portal [maintainer=@lambdajon]
  • Haskell 64.5%
  • Nix 30.1%
  • CSS 2.4%
  • TypeScript 1.6%
  • JavaScript 0.9%
  • Other 0.5%
Find a file
2026-05-18 15:24:05 +05:00
client chore: add new options (#13) 2026-04-29 15:40:23 +05:00
server remove liftio 2026-05-18 15:24:05 +05:00
.editorconfig editor config 2026-02-10 16:43:59 +05:00
.envrc setup flakes 2026-02-10 16:50:50 +05:00
.gitignore Server generate keys (#3) 2026-04-14 04:08:29 +05:00
.gitmodules Server generate keys (#3) 2026-04-14 04:08:29 +05:00
CHANGELOG.md setup flakes 2026-02-10 16:50:50 +05:00
flake.lock update flake 2026-05-06 12:05:17 +05:00
flake.nix fix: jailbreak cabal-hoogle 2026-05-06 11:49:06 +05:00
LICENSE setup flakes 2026-02-10 16:50:50 +05:00
README.md space 2026-05-04 17:59:40 +05:00
shell.nix wip: setup relago module 2026-03-27 10:47:08 +05:00
treefmt.toml setup flakes 2026-02-10 16:50:50 +05:00

relago-support

Relago support portal

Usage

Here's how you can use/start/build projects

Server

We have many option of running server. Let's see them.

Configuration.nix

To run server in your config as service, you can import and enable it in your config.

# add input flake
inputs = {
  relago-support.url = "github:xinux-org/relago-support";
};

# import into your config
imports = [ inputs.relago-support.nixosModules.server ];

# then enable it in service
services.relago-server = {
  enable = true;
  port = 42424; # optional. you can see more in server/module.nix file
};

Cabal run

You can run it via this command:

cd server
cabal run -- -c <path-to-config>.toml