├── .VERSION_PREFIX ├── .dir-locals.el ├── .github └── workflows │ └── add_to_project_board.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── bb.edn ├── bin ├── kaocha └── proj ├── deps.edn ├── dev └── user.clj ├── notebooks └── walkthrough.clj ├── notes.org ├── pom.xml ├── repl_sessions ├── infomercial.clj ├── poke.clj └── poke_xtdb.clj ├── scratch ├── api_test.clj ├── demo_factories.clj ├── jdbc.clj ├── kernel_test.clj ├── refs.clj └── rules.clj ├── src ├── .gitkeep └── lambdaisland │ ├── facai.cljc │ └── facai │ ├── datomic_peer.clj │ ├── helpers.cljc │ ├── kernel.cljc │ ├── macro_util.clj │ ├── next_jdbc.clj │ └── xtdb.clj ├── test ├── .gitkeep └── lambdaisland │ ├── facai │ ├── datomic_peer_test.clj │ ├── jdbc_test.clj │ ├── kernel_test.cljc │ └── xtdb_test.clj │ └── facai_test.cljc └── tests.edn /.VERSION_PREFIX: -------------------------------------------------------------------------------- 1 | 0.8 -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/add_to_project_board.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/.github/workflows/add_to_project_board.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/README.md -------------------------------------------------------------------------------- /bb.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/bb.edn -------------------------------------------------------------------------------- /bin/kaocha: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | clojure -A:test:jdbc:datomic-free:xtdb -m kaocha.runner "$@" 3 | -------------------------------------------------------------------------------- /bin/proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/bin/proj -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/deps.edn -------------------------------------------------------------------------------- /dev/user.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/dev/user.clj -------------------------------------------------------------------------------- /notebooks/walkthrough.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/notebooks/walkthrough.clj -------------------------------------------------------------------------------- /notes.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/notes.org -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/pom.xml -------------------------------------------------------------------------------- /repl_sessions/infomercial.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/repl_sessions/infomercial.clj -------------------------------------------------------------------------------- /repl_sessions/poke.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/repl_sessions/poke.clj -------------------------------------------------------------------------------- /repl_sessions/poke_xtdb.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/repl_sessions/poke_xtdb.clj -------------------------------------------------------------------------------- /scratch/api_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/scratch/api_test.clj -------------------------------------------------------------------------------- /scratch/demo_factories.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/scratch/demo_factories.clj -------------------------------------------------------------------------------- /scratch/jdbc.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/scratch/jdbc.clj -------------------------------------------------------------------------------- /scratch/kernel_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/scratch/kernel_test.clj -------------------------------------------------------------------------------- /scratch/refs.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/scratch/refs.clj -------------------------------------------------------------------------------- /scratch/rules.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/scratch/rules.clj -------------------------------------------------------------------------------- /src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lambdaisland/facai.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/src/lambdaisland/facai.cljc -------------------------------------------------------------------------------- /src/lambdaisland/facai/datomic_peer.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/src/lambdaisland/facai/datomic_peer.clj -------------------------------------------------------------------------------- /src/lambdaisland/facai/helpers.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/src/lambdaisland/facai/helpers.cljc -------------------------------------------------------------------------------- /src/lambdaisland/facai/kernel.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/src/lambdaisland/facai/kernel.cljc -------------------------------------------------------------------------------- /src/lambdaisland/facai/macro_util.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/src/lambdaisland/facai/macro_util.clj -------------------------------------------------------------------------------- /src/lambdaisland/facai/next_jdbc.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/src/lambdaisland/facai/next_jdbc.clj -------------------------------------------------------------------------------- /src/lambdaisland/facai/xtdb.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/src/lambdaisland/facai/xtdb.clj -------------------------------------------------------------------------------- /test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/lambdaisland/facai/datomic_peer_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/test/lambdaisland/facai/datomic_peer_test.clj -------------------------------------------------------------------------------- /test/lambdaisland/facai/jdbc_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/test/lambdaisland/facai/jdbc_test.clj -------------------------------------------------------------------------------- /test/lambdaisland/facai/kernel_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/test/lambdaisland/facai/kernel_test.cljc -------------------------------------------------------------------------------- /test/lambdaisland/facai/xtdb_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/test/lambdaisland/facai/xtdb_test.clj -------------------------------------------------------------------------------- /test/lambdaisland/facai_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/test/lambdaisland/facai_test.cljc -------------------------------------------------------------------------------- /tests.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaisland/facai/HEAD/tests.edn --------------------------------------------------------------------------------