Skip to content

Commit 36e3e0b

Browse files
authored
update
1 parent 361f191 commit 36e3e0b

File tree

3 files changed

+26
-9
lines changed

3 files changed

+26
-9
lines changed

docs/.vitepress/config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export default defineConfig({
9393
collapsed: true,
9494
items: [
9595
{ text: "Introduction", link: "/get_started/about" },
96-
{ text: "Installation", link: "/get_started/quickstart" },
96+
{ text: "Quickstart", link: "/get_started/quickstart" },
9797
{ text: "Hello World", link: "/get_started/hello_world" },
9898
{ text: "Sample Apps", link: "/get_started/samples" },
9999
{ text: "Use Cases", link: "/get_started/use_cases" },

docs/get_started/quickstart.md

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
outline: [2, 4]
33
---
44

5-
# Installation
5+
# Quickstart
66

77
### 1. Installation with abapGit
88

@@ -58,12 +58,29 @@ For ABAP Cloud environments, follow [this guide.](https://developers.sap.com/tut
5858
<img width="846" alt="image-20 BiFOuUXZ" src="https://github.com/user-attachments/assets/ecbd1505-1412-47e4-9427-504fa91c8162">
5959
:::
6060

61+
::: tip Security
62+
This project communicates solely with the HTTP service you define, giving you complete control over accessibility, authentication, and other security aspects.
63+
:::
64+
6165
### 4. Initial Launch
6266
Now open the HTTP endpoint in your web browser:
6367
<img width="800" alt="image" src="https://github.com/user-attachments/assets/c8962298-068d-4efb-a853-c44a9b9cda56">
6468
Press `check` and launch the test app. That's it! You're ready to create your own abap2UI5 apps – just create a new class and start coding.
6569

66-
::: tip Security
67-
This project communicates solely with the HTTP service you define, giving you complete control over accessibility, authentication, and other security aspects.
68-
:::
70+
71+
### 5. Your First App
72+
Next, create a new class in your system:
73+
```abap
74+
CLASS zcl_my_app DEFINITION PUBLIC.
75+
PUBLIC SECTION.
76+
INTERFACES z2ui5_if_app.
77+
ENDCLASS.
78+
79+
CLASS zcl_my_app IMPLEMENTATION.
80+
METHOD z2ui5_if_app~main.
81+
client->message_box_display( `Hello World` ).
82+
ENDMETHOD.
83+
ENDCLASS.
84+
```
85+
Launch your app instead of the test app, and congratulations - you've called your first own abap2UI5 app!
6986

docs/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ hero:
1313
width: 200px
1414
height: 200px
1515
actions:
16+
- theme: brand
17+
text: Learn More
18+
link: /get_started/about
1619
- theme: alt
17-
text: Get Started
20+
text: Quickstart
1821
link: /get_started/quickstart
1922
- theme: alt
20-
text: Learn More
21-
link: /get_started/about
22-
- theme: brand
2323
text: What's new?
2424
link: /resources/changelog.md
2525

0 commit comments

Comments
 (0)