From 50160219320e8636c683273b64d89bb27d604711 Mon Sep 17 00:00:00 2001 From: stupidcomputer Date: Tue, 30 Jul 2024 18:46:55 -0500 Subject: [PATCH] init: initial commit --- .gitignore | 3 +++ README.md | 4 ++++ shell.nix | 4 ++++ 3 files changed, 11 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 shell.nix diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e87d1c2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.pyc +__pycache__/ +db.sqlite3 diff --git a/README.md b/README.md new file mode 100644 index 0000000..ffea432 --- /dev/null +++ b/README.md @@ -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. \ No newline at end of file diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..7a7dd41 --- /dev/null +++ b/shell.nix @@ -0,0 +1,4 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + nativeBuildInputs = with pkgs.python311Packages; [ django ] ++ [ pkgs.docker-compose ] ; + } \ No newline at end of file