@@ -41,7 +41,7 @@ Read more @ http://bit.ly/2AStvhK
4141## Complete Directory Layout
4242
4343```
44- ├── /app/ # The backend (java ) application sources (controllers, models, views, assets)
44+ ├── /app/ # The backend (scala ) application sources (controllers, models, views, assets)
4545├── /conf/ # Configurations files and other non-compiled resources (on classpath)
4646│ ├── application.conf # Builds the project from source to output(lib and bower) folder
4747│ ├── logback.xml # Logging configuration
@@ -50,11 +50,10 @@ Read more @ http://bit.ly/2AStvhK
5050│ └── application.log # Default log file
5151├── /project/ # Sbt configuration files
5252│ ├── FrontendCommands.scala # Frontend build commands
53- │ ├── FrontendRunHook.scala # Frontend build play run hook
53+ │ ├── FrontendRunHook.scala # Forntend build PlayRunHook (trigger frontend serve on sbt run)
5454│ ├── build.properties # Marker for sbt project
5555│ └── plugins.sbt # Sbt plugins declaration
56- ├── /public/ # Public assets
57- │ └── /ui/ # Frontend build assests
56+ ├── /public/ # Frontend build artifacts will be copied to this directory
5857├── /target/ # Generated stuff
5958│ ├── /universal/ # Application packaging
6059│ └── /web/ # Compiled web assets
@@ -72,7 +71,7 @@ Read more @ http://bit.ly/2AStvhK
7271├── build.sbt # Play application build script
7372├── LICENSE # Contains License Agreement file
7473├── README.md # Contains all user guide details for the application
75- └── ui-build.sbt # UI build scripts
74+ └── ui-build.sbt # Associated frontend build scripts with sbt
7675```
7776
7877## What is new in here?
0 commit comments