├── .gitignore ├── README.md ├── example ├── my-garden │ ├── boot.properties │ ├── build.boot │ ├── html │ │ └── index.html │ └── src │ │ ├── clj │ │ └── mygarden │ │ │ └── styles.clj │ │ └── cljs │ │ └── mygarden │ │ └── core.cljs └── static │ ├── boot.properties │ ├── build.boot │ └── html │ ├── css │ └── main.css │ ├── foo │ ├── bar │ │ └── baz.html │ └── foobar.html │ └── index.html └── src └── pointslope ├── boot_fingerprint.clj └── boot_fingerprint └── fingerprint.clj /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointslope/boot-fingerprint/HEAD/README.md -------------------------------------------------------------------------------- /example/my-garden/boot.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointslope/boot-fingerprint/HEAD/example/my-garden/boot.properties -------------------------------------------------------------------------------- /example/my-garden/build.boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointslope/boot-fingerprint/HEAD/example/my-garden/build.boot -------------------------------------------------------------------------------- /example/my-garden/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointslope/boot-fingerprint/HEAD/example/my-garden/html/index.html -------------------------------------------------------------------------------- /example/my-garden/src/clj/mygarden/styles.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointslope/boot-fingerprint/HEAD/example/my-garden/src/clj/mygarden/styles.clj -------------------------------------------------------------------------------- /example/my-garden/src/cljs/mygarden/core.cljs: -------------------------------------------------------------------------------- 1 | (ns mygarden.core) 2 | -------------------------------------------------------------------------------- /example/static/boot.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointslope/boot-fingerprint/HEAD/example/static/boot.properties -------------------------------------------------------------------------------- /example/static/build.boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointslope/boot-fingerprint/HEAD/example/static/build.boot -------------------------------------------------------------------------------- /example/static/html/css/main.css: -------------------------------------------------------------------------------- 1 | body {background-color: grey} 2 | -------------------------------------------------------------------------------- /example/static/html/foo/bar/baz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointslope/boot-fingerprint/HEAD/example/static/html/foo/bar/baz.html -------------------------------------------------------------------------------- /example/static/html/foo/foobar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointslope/boot-fingerprint/HEAD/example/static/html/foo/foobar.html -------------------------------------------------------------------------------- /example/static/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointslope/boot-fingerprint/HEAD/example/static/html/index.html -------------------------------------------------------------------------------- /src/pointslope/boot_fingerprint.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointslope/boot-fingerprint/HEAD/src/pointslope/boot_fingerprint.clj -------------------------------------------------------------------------------- /src/pointslope/boot_fingerprint/fingerprint.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointslope/boot-fingerprint/HEAD/src/pointslope/boot_fingerprint/fingerprint.clj --------------------------------------------------------------------------------