promptlineapp 1.3.11 → 1.3.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
#
|
|
1
|
+
# promptlineapp
|
|
2
2
|
|
|
3
3
|
Create AI-powered applications with [PromptLine](https://promptlineops.com) - no configuration needed.
|
|
4
4
|
|
|
5
5
|
## Quick Start
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npx
|
|
8
|
+
npx promptlineapp my-app
|
|
9
9
|
cd my-app
|
|
10
10
|
```
|
|
11
11
|
|
|
@@ -16,7 +16,7 @@ That's it! You now have a fully-configured PromptLine package ready for developm
|
|
|
16
16
|
### Interactive Mode (Recommended)
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
npx
|
|
19
|
+
npx promptlineapp my-app
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
You'll be prompted for:
|
|
@@ -29,8 +29,8 @@ You'll be prompted for:
|
|
|
29
29
|
### Non-Interactive Mode
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
|
-
npx
|
|
33
|
-
npx
|
|
32
|
+
npx promptlineapp my-app --yes
|
|
33
|
+
npx promptlineapp my-app --preset saas -y
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
## Template Presets
|
|
@@ -43,8 +43,8 @@ npx create-promptline-app my-app --preset saas -y
|
|
|
43
43
|
| `blank` | Empty template | Custom builds from scratch |
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
npx
|
|
47
|
-
npx
|
|
46
|
+
npx promptlineapp my-app --preset saas
|
|
47
|
+
npx promptlineapp my-api --preset api
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
## What You Get
|