This commit is contained in:
Hadi
2026-04-06 15:12:34 +02:00
commit 4989225671
117 changed files with 11454 additions and 0 deletions

17
nix/backend.nix Normal file
View File

@@ -0,0 +1,17 @@
{pkgs, ...}:
pkgs.buildGoModule {
pname = "iky";
version = "0.1.0";
src = ../back;
vendorHash = "sha256-gR7P7Wcd7wojNkUz71vb2vvbbbQJF2QNnSld7WZ6moc=";
env.CGO_ENABLED = "0";
ldflags = ["-s" "-w"];
meta = {
description = "Iknowyou OSINT platform: backend API server";
mainProgram = "server";
};
}