4
0
Fork
You've already forked relago-support
0
🙌🏻 | Relago support portal [maintainer=@lambdajon]
  • Haskell 66.3%
  • Nix 27.3%
  • CSS 2.2%
  • Shell 1.6%
  • TypeScript 1.4%
  • Other 1.2%
Asliddin Abdivasiyev 56d41c1ae8 refactor(server): resolve compiler warnings ( #22 )
- remove unused imports
- remove unused variables
- use putStr instead of print for strings
- fill JournalEntry missing fields
Reviewed-on: https://git.oss.uzinfocom.uz/xinux/relago-support/pulls/22 
2026年07月08日 13:45:51 +00:00
.forgejo/workflows dream2nix ( #15 ) 2026年06月20日 06:14:57 +00:00
client fix: removed heads ( #8 ) 2026年06月01日 11:08:12 +00:00
infra add: postgresql 2026年06月22日 18:02:36 +05:00
server refactor(server): resolve compiler warnings ( #22 ) 2026年07月08日 13:45:51 +00:00
.editorconfig editor config 2026年02月10日 16:43:59 +05:00
.envrc setup flakes 2026年02月10日 16:50:50 +05:00
.gitignore add: postgresql 2026年06月22日 18:02:36 +05:00
CHANGELOG.md setup flakes 2026年02月10日 16:50:50 +05:00
flake.lock dream2nix ( #15 ) 2026年06月20日 06:14:57 +00:00
flake.nix dream2nix ( #15 ) 2026年06月20日 06:14:57 +00: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 dream2nix ( #15 ) 2026年06月20日 06:14:57 +00: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