diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..1d953f4 --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +use nix diff --git a/README.md b/README.md new file mode 100644 index 0000000..fa9b658 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +Source of the bible text[^1] + +[^1]: https://www.ph4.org/b4_index.php diff --git a/TODO b/TODO new file mode 100644 index 0000000..4640904 --- /dev/null +++ b/TODO @@ -0,0 +1 @@ +# TODO diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..f23e04a --- /dev/null +++ b/TODO.md @@ -0,0 +1,7 @@ +# TODO + +- [ ] Get text of the bible from the database. +- [ ] Get it into a structure with titles and chapter/verse numbers. +- [ ] Convert it into HTML. +- [ ] Style it. +- [ ] Make a PDF out of it. diff --git a/db/NA27ca.zip b/db/NA27ca.zip new file mode 100644 index 0000000..6a124fc Binary files /dev/null and b/db/NA27ca.zip differ diff --git a/db/NA27ca/NA27ca.SQLite3 b/db/NA27ca/NA27ca.SQLite3 new file mode 100644 index 0000000..d8211e3 Binary files /dev/null and b/db/NA27ca/NA27ca.SQLite3 differ diff --git a/db/NA27ca/NA27ca.commentaries.SQLite3 b/db/NA27ca/NA27ca.commentaries.SQLite3 new file mode 100644 index 0000000..3f19998 Binary files /dev/null and b/db/NA27ca/NA27ca.commentaries.SQLite3 differ diff --git a/db/NA28.zip b/db/NA28.zip new file mode 100644 index 0000000..11b30f0 Binary files /dev/null and b/db/NA28.zip differ diff --git a/db/NA28/NA28.SQLite3 b/db/NA28/NA28.SQLite3 new file mode 100644 index 0000000..ba42bc0 Binary files /dev/null and b/db/NA28/NA28.SQLite3 differ diff --git a/db/NA28/NA28.commentaries.SQLite3 b/db/NA28/NA28.commentaries.SQLite3 new file mode 100644 index 0000000..d9a4261 Binary files /dev/null and b/db/NA28/NA28.commentaries.SQLite3 differ diff --git a/db/PBPW.zip b/db/PBPW.zip new file mode 100644 index 0000000..7042a2a Binary files /dev/null and b/db/PBPW.zip differ diff --git a/db/PBPW/PBPW.SQLite3 b/db/PBPW/PBPW.SQLite3 new file mode 100644 index 0000000..db51966 Binary files /dev/null and b/db/PBPW/PBPW.SQLite3 differ diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..32e8571 --- /dev/null +++ b/shell.nix @@ -0,0 +1,12 @@ +{ pkgs ? import {} }: +let + db = pkgs.writeShellScriptBin "db" '' + ${pkgs.rlwrap}/bin/rlwrap ${pkgs.sqlite}/bin/sqlite3 $@ + ''; +in +pkgs.mkShell { + buildInputs = [ + pkgs.sqlite + db + ]; +}