We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c14e4f commit 602ae85Copy full SHA for 602ae85
cli/.gh-include
@@ -0,0 +1 @@
1
+config.schema.json
cli/config.schema.json
@@ -0,0 +1,18 @@
+{
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://nanoforge-dev.github.io/docs/cli/config.schema.json",
4
+ "title": "Nanoforge CLI config",
5
+ "type": "object",
6
+ "properties": {
7
+ "name": {
8
+ "type": "string",
9
+ "description": "the project name"
10
+ },
11
+ "language": {
12
+ "enum": ["ts", "js"]
13
14
+ "initFunctions": {
15
+ "type": "boolean"
16
+ }
17
18
+}
cli/index.rst
@@ -0,0 +1,4 @@
+CLI
+===
+
+The nanoforge cli is the main tool to use when building or deploying a nanoforge application
0 commit comments