init: initial commit

This commit is contained in:
stupidcomputer 2024-07-30 18:46:55 -05:00
commit 0703f408e5
3 changed files with 10 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*.pyc
__pycache__/

4
README.md Normal file
View File

@ -0,0 +1,4 @@
# `conference-manager`
This software manages Youth in Government and Model United Nations conferences.
This is part of a prototype to help the YMCA CCE in Middle Tennessee to run their conferences easily.

4
shell.nix Normal file
View File

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