├── .gitignore ├── .gitmodules ├── README.md ├── idea.png └── img └── logo ├── ai-technologies-logo.png ├── gemini_logo.png └── gemini_logo_blue_small.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | # Specific for Gemini 2 | wd/ 3 | !docker/dev/wd/application.properties 4 | 5 | 6 | # Created by https://www.gitignore.io/api/osx,node,java,gradle,angular,windows,intellij+all 7 | # Edit at https://www.gitignore.io/?templates=osx,node,java,gradle,angular,windows,intellij+all 8 | 9 | ### Angular ### 10 | ## Angular ## 11 | # compiled output 12 | /dist 13 | /tmp 14 | /app/**/*.js 15 | /app/**/*.js.map 16 | 17 | # dependencies 18 | /node_modules 19 | /bower_components 20 | 21 | # IDEs and editors 22 | /.idea 23 | 24 | # misc 25 | /.sass-cache 26 | /connect.lock 27 | /coverage/* 28 | /libpeerconnection.log 29 | npm-debug.log 30 | testem.log 31 | /typings 32 | 33 | # e2e 34 | /e2e/*.js 35 | /e2e/*.map 36 | 37 | #System Files 38 | .DS_Store 39 | 40 | ### Intellij+all ### 41 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm 42 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 43 | 44 | # User-specific stuff 45 | .idea/**/workspace.xml 46 | .idea/**/tasks.xml 47 | .idea/**/usage.statistics.xml 48 | .idea/**/dictionaries 49 | .idea/**/shelf 50 | 51 | # Generated files 52 | .idea/**/contentModel.xml 53 | 54 | # Sensitive or high-churn files 55 | .idea/**/dataSources/ 56 | .idea/**/dataSources.ids 57 | .idea/**/dataSources.local.xml 58 | .idea/**/sqlDataSources.xml 59 | .idea/**/dynamic.xml 60 | .idea/**/uiDesigner.xml 61 | .idea/**/dbnavigator.xml 62 | 63 | # Gradle 64 | .idea/**/gradle.xml 65 | .idea/**/libraries 66 | 67 | # Gradle and Maven with auto-import 68 | # When using Gradle or Maven with auto-import, you should exclude module files, 69 | # since they will be recreated, and may cause churn. Uncomment if using 70 | # auto-import. 71 | # .idea/modules.xml 72 | # .idea/*.iml 73 | # .idea/modules 74 | 75 | # CMake 76 | cmake-build-*/ 77 | 78 | # Mongo Explorer plugin 79 | .idea/**/mongoSettings.xml 80 | 81 | # File-based project format 82 | *.iws 83 | 84 | # IntelliJ 85 | out/ 86 | 87 | # mpeltonen/sbt-idea plugin 88 | .idea_modules/ 89 | 90 | # JIRA plugin 91 | atlassian-ide-plugin.xml 92 | 93 | # Cursive Clojure plugin 94 | .idea/replstate.xml 95 | 96 | # Crashlytics plugin (for Android Studio and IntelliJ) 97 | com_crashlytics_export_strings.xml 98 | crashlytics.properties 99 | crashlytics-build.properties 100 | fabric.properties 101 | 102 | # Editor-based Rest Client 103 | .idea/httpRequests 104 | 105 | # Android studio 3.1+ serialized cache file 106 | .idea/caches/build_file_checksums.ser 107 | 108 | ### Intellij+all Patch ### 109 | # Ignores the whole .idea folder and all .iml files 110 | # See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360 111 | 112 | .idea/ 113 | 114 | # Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023 115 | 116 | *.iml 117 | modules.xml 118 | .idea/misc.xml 119 | *.ipr 120 | 121 | ### Java ### 122 | # Compiled class file 123 | *.class 124 | 125 | # Log file 126 | *.log 127 | 128 | # BlueJ files 129 | *.ctxt 130 | 131 | # Mobile Tools for Java (J2ME) 132 | .mtj.tmp/ 133 | 134 | # Package Files # 135 | *.jar 136 | *.war 137 | *.nar 138 | *.ear 139 | *.zip 140 | *.tar.gz 141 | *.rar 142 | 143 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 144 | hs_err_pid* 145 | 146 | ### Node ### 147 | # Logs 148 | logs 149 | npm-debug.log* 150 | yarn-debug.log* 151 | yarn-error.log* 152 | 153 | # Runtime data 154 | pids 155 | *.pid 156 | *.seed 157 | *.pid.lock 158 | 159 | # Directory for instrumented libs generated by jscoverage/JSCover 160 | lib-cov 161 | 162 | # Coverage directory used by tools like istanbul 163 | coverage 164 | 165 | # nyc test coverage 166 | .nyc_output 167 | 168 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 169 | .grunt 170 | 171 | # Bower dependency directory (https://bower.io/) 172 | bower_components 173 | 174 | # node-waf configuration 175 | .lock-wscript 176 | 177 | # Compiled binary addons (https://nodejs.org/api/addons.html) 178 | build/Release 179 | 180 | # Dependency directories 181 | node_modules/ 182 | jspm_packages/ 183 | 184 | # TypeScript v1 declaration files 185 | typings/ 186 | 187 | # Optional npm cache directory 188 | .npm 189 | 190 | # Optional eslint cache 191 | .eslintcache 192 | 193 | # Optional REPL history 194 | .node_repl_history 195 | 196 | # Output of 'npm pack' 197 | *.tgz 198 | 199 | # Yarn Integrity file 200 | .yarn-integrity 201 | 202 | # dotenv environment variables file 203 | .env 204 | 205 | # parcel-bundler cache (https://parceljs.org/) 206 | .cache 207 | 208 | # next.js build output 209 | .next 210 | 211 | # nuxt.js build output 212 | .nuxt 213 | 214 | # vuepress build output 215 | .vuepress/dist 216 | 217 | # Serverless directories 218 | .serverless/ 219 | 220 | # FuseBox cache 221 | .fusebox/ 222 | 223 | #DynamoDB Local files 224 | .dynamodb/ 225 | 226 | ### OSX ### 227 | # General 228 | .AppleDouble 229 | .LSOverride 230 | 231 | # Icon must end with two \r 232 | Icon 233 | 234 | # Thumbnails 235 | ._* 236 | 237 | # Files that might appear in the root of a volume 238 | .DocumentRevisions-V100 239 | .fseventsd 240 | .Spotlight-V100 241 | .TemporaryItems 242 | .Trashes 243 | .VolumeIcon.icns 244 | .com.apple.timemachine.donotpresent 245 | 246 | # Directories potentially created on remote AFP share 247 | .AppleDB 248 | .AppleDesktop 249 | Network Trash Folder 250 | Temporary Items 251 | .apdisk 252 | 253 | ### Windows ### 254 | # Windows thumbnail cache files 255 | Thumbs.db 256 | ehthumbs.db 257 | ehthumbs_vista.db 258 | 259 | # Dump file 260 | *.stackdump 261 | 262 | # Folder config file 263 | [Dd]esktop.ini 264 | 265 | # Recycle Bin used on file shares 266 | $RECYCLE.BIN/ 267 | 268 | # Windows Installer files 269 | *.cab 270 | *.msi 271 | *.msix 272 | *.msm 273 | *.msp 274 | 275 | # Windows shortcuts 276 | *.lnk 277 | 278 | ### Gradle ### 279 | .gradle 280 | /build/ 281 | 282 | # Ignore Gradle GUI config 283 | gradle-app.setting 284 | 285 | # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) 286 | !gradle-wrapper.jar 287 | 288 | # Cache of project 289 | .gradletasknamecache 290 | 291 | # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898 292 | # gradle/wrapper/gradle-wrapper.properties 293 | 294 | ### Gradle Patch ### 295 | **/build/ 296 | 297 | # End of https://www.gitignore.io/api/osx,node,java,gradle,angular,windows,intellij+all 298 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "gemini-micronaut"] 2 | path = gemini-micronaut 3 | url = https://github.com/gemini-projects/gemini-micronaut 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 | Cloud Native and Low Code Platform to create FullStack web Admin applications in minutes
7 |
8 |
9 |
15 |
16 |