Datei package.json
anlegen
{
"name": "ui5.walkthrough",
"version": "1.0.0",
"description": "The UI5 walkthrough application",
"scripts": {
"start": "ui5 serve -o index.html"
}
}
Ordner webapp
anlegen
In diesem Ordner lebt unsere Anwendung!
Datei webapp/index.html
anlegen
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>UI5 Walkthrough</title>
</head>
<body>
<div>Hello World</div>
</body>
</html>
Datei webapp/manifest.json
anlegen
{
"_version": "1.58.0",
"sap.app": {
"id": "ui5.walkthrough"
}
}