Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/02-feature_request.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: Feature request
description: Request a new feature
labels: [enhancement request]
labels: [enhancement]
body:
- type: markdown
attributes:
value: |
Thank you for submitting an idea !
- type: dropdown
id: application_or_command
id: command
attributes:
label: Which command is this feature request for?
options:
Expand Down
6 changes: 6 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,9 @@ command:start:
- any-glob-to-any-file:
- src/command/commands/start.ts
- src/action/actions/start.ts

documentation:
- changed-files:
- any-glob-to-any-file:
- docs/*
- docs/**/*
4 changes: 3 additions & 1 deletion .github/workflows/push-docs.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: synchronize-docs
name: Synchronize Docs

on:
push:
branches:
- main
paths:
- "docs/**"
workflow_dispatch:

jobs:
Expand Down
25 changes: 14 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
<div align="center">
<br />
<p>
<a href="https://github.com/NanoForge-dev"><img src="https://github.com/NanoForge-dev/CLI/blob/main/.github/logo.png" width="546" alt="NanoForge" /></a>
</p>
<br />
<p>
<a href="https://github.com/NanoForge-dev/CLI/actions"><img src="https://github.com/NanoForge-dev/CLI/actions/workflows/tests.yml/badge.svg" alt="Tests status" /></a>
<a href="https://github.com/NanoForge-dev/CLI/commits/main"><img src="https://img.shields.io/github/last-commit/NanoForge-dev/CLI.svg?logo=github&logoColor=ffffff" alt="Last commit." /></a>
<a href="https://github.com/NanoForge-dev/CLI/graphs/contributors"><img src="https://img.shields.io/github/contributors/NanoForge-dev/CLI.svg?maxAge=3600&logo=github&logoColor=fff&color=00c7be" alt="contributors" /></a>
<a href="https://github.com/NanoForge-dev/docs/actions/workflows/deploy.yml"><img src="https://github.com/NanoForge-dev/docs/actions/workflows/deploy.yml/badge.svg" alt="Documentation status" /></a>
</p>
<br />
<p>
<a href="https://github.com/NanoForge-dev"><img src="https://github.com/NanoForge-dev/CLI/blob/main/.github/logo.png" width="546" alt="NanoForge" /></a>
</p>
<br />
<p>
<a href="https://www.npmjs.com/package/@nanoforge-dev/cli"><img src="https://img.shields.io/npm/v/@nanoforge-dev/cli.svg?maxAge=3600" alt="npm version" /></a>
<a href="https://www.npmjs.com/package/@nanoforge-dev/cli"><img src="https://img.shields.io/npm/dt/@nanoforge-dev/cli.svg?maxAge=3600" alt="npm downloads" /></a>
<a href="https://github.com/NanoForge-dev/CLI/actions/workflows/tests.yml"><img src="https://github.com/NanoForge-dev/CLI/actions/workflows/tests.yml/badge.svg" alt="Tests status" /></a>
<a href="https://github.com/NanoForge-dev/CLI/actions/workflows/push-docs.yml"><img src="https://github.com/NanoForge-dev/CLI/actions/workflows/push-docs.yml/badge.svg" alt="Documentation status" /></a>
<a href="https://github.com/NanoForge-dev/CLI/commits/main"><img src="https://img.shields.io/github/last-commit/NanoForge-dev/CLI.svg?logo=github&logoColor=ffffff" alt="Last commit" /></a>
<a href="https://github.com/NanoForge-dev/CLI/graphs/contributors"><img src="https://img.shields.io/github/contributors/NanoForge-dev/CLI.svg?maxAge=3600&logo=github&logoColor=fff&color=00c7be" alt="Contributors" /></a>
</p>
</div>

## About
Expand All @@ -31,6 +33,7 @@ And then create a new project :
```bash
nf new
```

## Documentation

The documentation for nanoforge cli can be found at : [https://nanoforge-dev.github.io/docs/cli](https://nanoforge-dev.github.io/docs/cli)
Expand Down
2 changes: 1 addition & 1 deletion docs/build-config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"outDir": {
"type": "string",
"description": "the directory where to put the built files"
},
}
},
"required": ["entryFile", "outDir"]
}
2 changes: 1 addition & 1 deletion docs/client-config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"build": {
"$ref": "https://nanoforge-dev.github.io/docs/cli/build-config.schema.json"
},
},
"runtime": {
"$ref": "https://nanoforge-dev.github.io/docs/cli/run-config.schema.json"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"client": {
"$ref": "https://nanoforge-dev.github.io/docs/cli/client-config.schema.json"
},
},
"server": {
"$ref": "https://nanoforge-dev.github.io/docs/cli/server-config.schema.json"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/run-config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dir": {
"type": "string",
"description": "the directory to use"
},
}
},
"required": ["dir"]
}
2 changes: 1 addition & 1 deletion docs/server-config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"build": {
"$ref": "https://nanoforge-dev.github.io/docs/cli/build-config.schema.json"
},
},
"runtime": {
"$ref": "https://nanoforge-dev.github.io/docs/cli/run-config.schema.json"
}
Expand Down