Skip to content

UI5 Folder Structure

Marco Beier edited this page Dec 21, 2021 · 7 revisions

For more detailed information visit the official documentation. Additionally check out the basic files of a UI5 application here.

I myself use the UI5 Tooling or the Easy UI5 Generator for project scaffolding and overall work (serve on localhost, build etc.).

Basic UI5 Project Folder Structure

.
├── root
│   ├── webapp
│   │   ├── controller
│   │   ├── i18n
│   │   ├── localService
│   │   ├── model
│   │   ├── test
│   │   └── view
│   ├── Component.js
│   ├── index.html
│   ├── manifest.json
│   └── test.html
├── .project.json
├── neo-app-json
└── pom.xml

Basic UI5 MTA Project Folder Structure (WebIDE)

.
├── mta_projectName
│   ├── UI5AppProjectName
│   ├── (Launchpad)
│   ├── mta_projectName_appRouter
│   └── mta_projectName_ui_deployer
├── mta.yaml
└── xs-security.json
Clone this wiki locally