├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | client/dist/* 2 | **/.cpcache/* 3 | **/node_modules/* 4 | **/yarn.lock 5 | **/cljs-out 6 | *.DS_Store 7 | *.css 8 | pom.xml 9 | figwheel_server.log 10 | *-lock.json 11 | **/.shadow-cljs/* 12 | *.lock 13 | package-lock.json 14 | *.iml 15 | resources/public/js/ 16 | out/production/* 17 | out/test/* 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Schema Cartographer 2 | 3 | cartographer-screenshot 4 | 5 | To properly support both on-prem users leveraging the peer api and cloud users leveraging client, the schema-cartographer has been split into two repositories. 6 | 7 | * [Schema Cartographer Cloud](https://github.com/JarrodCTaylor/schema-cartographer-cloud) 8 | * [Schema Cartographer On-Prem](https://github.com/JarrodCTaylor/schema-cartographer-on-prem) 9 | --------------------------------------------------------------------------------