@akanjs/cli 0.0.137 → 0.0.139
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 +18 -1
- package/cjs/index.js +277 -92
- package/cjs/src/templates/app/app/[lang]/admin/layout.js +1 -0
- package/cjs/src/templates/workspaceRoot/package.json.template +1 -0
- package/esm/index.js +277 -92
- package/esm/src/templates/app/app/[lang]/admin/layout.js +1 -0
- package/esm/src/templates/workspaceRoot/package.json.template +1 -0
- package/package.json +1 -1
- package/src/application/application.command.d.ts +1 -1
- package/src/application/application.runner.d.ts +6 -3
- package/src/application/application.script.d.ts +2 -2
- package/src/cloud/cloud.command.d.ts +5 -5
- package/src/cloud/cloud.script.d.ts +5 -5
- package/src/library/library.command.d.ts +1 -2
- package/src/library/library.script.d.ts +0 -1
- package/src/package/package.command.d.ts +1 -1
- package/src/package/package.script.d.ts +1 -1
package/README.md
CHANGED
|
@@ -20,5 +20,22 @@ akan create-workspace
|
|
|
20
20
|
# How to start your project
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
cd <workspace-name> && akan start <app-name> --open
|
|
23
|
+
cd <workspace-name> && akan start <app-name> --open
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
you can navigate to default webpage
|
|
27
|
+
|
|
28
|
+
- home: http://localhost:4200
|
|
29
|
+
|
|
30
|
+
# Recipes
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
# set llm model
|
|
34
|
+
akan set-llm
|
|
35
|
+
|
|
36
|
+
# create module
|
|
37
|
+
akan create-module
|
|
38
|
+
|
|
39
|
+
# create scalar with ai (experimental)
|
|
40
|
+
akan create-scalar
|
|
24
41
|
```
|