feat(grfn/bbbg): Init

This will eventually become a signup sheet + no-show tracker for my
local board game meetup group

Change-Id: Id8d1d80d95d1e2fda5041275cff2fecfd6fa43f1
This commit is contained in:
Griffin Smith 2021-12-13 21:28:25 -05:00
parent 479e9ea279
commit c3cb7b0df8
35 changed files with 2549 additions and 0 deletions

20
users/grfn/bbbg/shell.nix Normal file
View file

@ -0,0 +1,20 @@
let
depot = import ../../.. {};
in
with depot.third_party.nixpkgs;
mkShell {
buildInputs = [
arion
depot.third_party.clj2nix
clojure
openjdk11_headless
postgresql_12
nix-prefetch-git
];
PGHOST = "localhost";
PGUSER = "bbbg";
PGDATABASE = "bbbg";
PGPASSWORD = "password";
}