You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`web/src/main/kotlin`| Contains the source files of all of your views, Servlets, REST endpoints, async jobs for your application. You'll focus on this folder for the remainder of this guide. |
176
-
|`web/src/main/webapp`| Contains the 'Chuck Norris' image file |
177
-
|`web/src/main/resources`| Contains the logger configuration file (`logback.xml`) |
178
-
|`build.gradle`| This file defines tasks that can be run from the command line. You should add your own tasks by adding code to this file. There is much you can do with Gradle - you can for example use the ssh plugin to deploy the WAR to your production environment. |
179
-
|`README.md`| This is a brief instruction manual for your application. You should edit this file to tell others what your application does, how to set it up, and so on. |
180
-
| .gitignore | This file tells git which files (or patterns) it should ignore. See [Github - Ignoring files](https://help.github.com/articles/ignoring-files/) for more info about ignoring files. |
|`src/main/kotlin`| Contains the source files of all of your views, Servlets, REST endpoints, async jobs for your application. You'll focus on this folder for the remainder of this guide. |
178
+
|`src/main/resources/webapp`| Contains the 'Chuck Norris' image file |
179
+
|`src/main/resources`| Contains the logger configuration file (`logback.xml`) |
180
+
|`build.gradle.kts`| This file defines tasks that can be run from the command line. You should add your own tasks by adding code to this file. There is much you can do with Gradle - you can for example use the ssh plugin to deploy the WAR to your production environment. |
181
+
|`README.md`| This is a brief instruction manual for your application. You should edit this file to tell others what your application does, how to set it up, and so on. |
182
+
| .gitignore | This file tells git which files (or patterns) it should ignore. See [Github - Ignoring files](https://help.github.com/articles/ignoring-files/) for more info about ignoring files. |
0 commit comments