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

19
example-configuration.nix Normal file
View File

@@ -0,0 +1,19 @@
# Example NixOS configuration
{ config, pkgs, ... }:
{
imports = [
./nixos-module.nix
];
services.tinder-api-wrapper = {
enable = true;
port = 8080; # default port
# Optionally override user/group if needed
# user = "custom-user";
# group = "custom-group";
};
# Open firewall port
networking.firewall.allowedTCPPorts = [ 8080 ];
}