├── .github └── workflows │ ├── branches.yml │ └── clojure.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── doc └── intro.md ├── helper.sh ├── project.clj ├── src └── datahike_firebase │ └── core.clj ├── test.sh └── test └── datahike_firebase └── core_test.clj /.github/workflows/branches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekcz/datahike-firebase/HEAD/.github/workflows/branches.yml -------------------------------------------------------------------------------- /.github/workflows/clojure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekcz/datahike-firebase/HEAD/.github/workflows/clojure.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekcz/datahike-firebase/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekcz/datahike-firebase/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekcz/datahike-firebase/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekcz/datahike-firebase/HEAD/README.md -------------------------------------------------------------------------------- /doc/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekcz/datahike-firebase/HEAD/doc/intro.md -------------------------------------------------------------------------------- /helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekcz/datahike-firebase/HEAD/helper.sh -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekcz/datahike-firebase/HEAD/project.clj -------------------------------------------------------------------------------- /src/datahike_firebase/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekcz/datahike-firebase/HEAD/src/datahike_firebase/core.clj -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekcz/datahike-firebase/HEAD/test.sh -------------------------------------------------------------------------------- /test/datahike_firebase/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekcz/datahike-firebase/HEAD/test/datahike_firebase/core_test.clj --------------------------------------------------------------------------------