boilerplate

This commit is contained in:
stupidcomputer 2024-06-19 01:25:57 -05:00
parent 10dd6418b7
commit 244c71eb59
3 changed files with 14 additions and 0 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
*.log
*.pot
*.pyc
__pycache__
db.sqlite3
media

4
README.md Normal file
View File

@ -0,0 +1,4 @@
yig
===
A tool to explore past bills, manage delegations, etc.

4
shell.nix Normal file
View File

@ -0,0 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.python311Packages; [ django ];
}