Initial commit

This commit is contained in:
2025-08-20 17:28:58 +03:00
commit 19c8391208
9 changed files with 387 additions and 0 deletions

5
shell.nix Executable file
View File

@@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = [ pkgs.buildPackages.python311 pkgs.buildPackages.python311Packages.flask pkgs.buildPackages.python311Packages.tomli pkgs.sqlite ];
}