Skip to content

Commit 9af1ab1

Browse files
committed
documentation update
1 parent 8c28338 commit 9af1ab1

File tree

1 file changed

+20
-22
lines changed

1 file changed

+20
-22
lines changed

README.md

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -46,28 +46,26 @@ The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
4646
in the documentation of this project are to be interpreted as described in [RFC 2119](https://www.ietf.org/rfc/rfc2119.txt).
4747

4848
## Quick Start
49-
These are the basic steps for building your first PEB-based serverless application:
50-
51-
* **1.** Download PEB.
52-
* **2.** Select your Perl distribution.
53-
* **3.** Write your Perl application reading user input on STDIN:
54-
55-
```perl
56-
my $input = <STDIN>;
57-
chomp $input;
58-
```
59-
60-
* **4.** Write an appropriate HTML interface with a [settings JavaScript object](./doc/SETTINGS.md#perl-scripts-api) for your Perl application.
61-
Triggering a Perl script from a local HTML page is configured using [one of the three possible methods](./doc/SETTINGS.md#perl-scripts-api).
62-
[Selecting files or folders with their full paths](./doc/SETTINGS.md#selecting-files-and-folders) is also possible.
63-
64-
These are the basic steps for building your first PEB-based application using a local Perl server:
65-
66-
* **1.** Download PEB.
67-
* **2.** Select your Perl distribution.
68-
* **3.** Write your Perl server application.
69-
* **4.** Write [local-server.json](./doc/SETTINGS.md#starting-local-server) for your local Perl server.
70-
* **5.** Write an appropriate HTML interface and connect it to your server application by traditional web communication protocols.
49+
* Common Steps:
50+
* **1.** Download PEB.
51+
* **2.** Select your Perl distribution.
52+
53+
* Serverless Application:
54+
* **3.** Write your Perl application reading user input on STDIN:
55+
56+
```perl
57+
my $input = <STDIN>;
58+
chomp $input;
59+
```
60+
61+
* **4.** Write an appropriate HTML interface with a [settings JavaScript object](./doc/SETTINGS.md#perl-scripts-api) for your Perl application.
62+
Triggering a Perl script from a local HTML page is configured using [one of the three possible methods](./doc/SETTINGS.md#perl-scripts-api).
63+
[Selecting files or folders with their full paths](./doc/SETTINGS.md#selecting-files-and-folders) is also possible.
64+
65+
* Local Server Application:
66+
* **3.** Write your Perl server application.
67+
* **4.** Write [local-server.json](./doc/SETTINGS.md#starting-local-server) for your local Perl server.
68+
* **5.** Write an appropriate HTML interface and connect it to your server application by traditional web communication protocols.
7169

7270
## Design Objectives
7371
* **1. Easy and beautiful graphical user interface for Perl 5 desktop applications**

0 commit comments

Comments
 (0)