Initialize Tinder API Wrapper with server configuration and Docker setup

This commit is contained in:
2025-03-20 22:19:48 +01:00
commit e99b56e434
17 changed files with 1459 additions and 0 deletions

21
default.nix Normal file
View File

@@ -0,0 +1,21 @@
{ lib, buildGoModule, fetchGit }:
buildGoModule rec {
pname = "tinder-api-wrapper";
version = "0.1.0";
src = fetchGit {
url = "ssh://git@your-gitea-server.com/owner/tinder-api-wrapper.git";
ref = "main"; # Or specific branch/tag
# rev = "specific-commit-hash"; # Optionally pin to specific commit
};
vendorSha256 = null; # Will be replaced with actual hash on first build
meta = with lib; {
description = "Tinder API Wrapper Service";
homepage = "https://your-gitea-server.com/owner/tinder-api-wrapper";
license = licenses.mit;
maintainers = with maintainers; [ /* add maintainers */ ];
};
}