-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
23 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
## Contributing | ||
|
||
This site is built with [VitePress](https://github.com/vuejs/vitepress). Site content is written in Markdown format located in `docs`. For simple edits, you can directly edit the file on GitHub and generate a Pull Request. | ||
|
||
For local development, Node.js `v18` or higher and [pnpm](https://pnpm.io/) `v9` or higher are required: | ||
|
||
```bash | ||
pnpm i | ||
pnpm run dev | ||
``` | ||
|
||
## Working on the content | ||
|
||
- See VitePress docs on supported [Markdown Extensions](https://vitepress.dev/guide/markdown). | ||
|
||
- We adopt the same [Writing Guide](https://github.com/vuejs/docs/blob/main/.github/contributing/writing-guide.md) as Vue.js for rules and recommendations on writing and maintaining documentation content. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,9 @@ | ||
# 📄 Documentation for Fleet SDK | ||
# 📄 Fleet SDK docs | ||
|
||
[Fleet SDK](https://github.com/fleet-sdk/fleet) is an easy-to-use, modular, and extensible off-chain SDK (Software Development Kit)for the [Ergo Platform](https://ergoplatform.org/en/), written entirely in TypeScript. | ||
|
||
**Fleet SDK** is currently in alpha status. It is already suitable for out-of-the-box use, but the API may still change between minor releases. | ||
|
||
This repository is for the [Fleet SDK Documentation](https://fleet-sdk.github.io/docs/) website. | ||
[Fleet SDK](https://github.com/fleet-sdk/fleet) is an easy-to-use, modular, and extensible off-chain SDK (Software Development Kit) for the [Ergo Platform](https://ergoplatform.org/en/), written entirely in TypeScript. | ||
|
||
## Contributing | ||
|
||
This site is built with [VitePress](https://github.com/vuejs/vitepress). Site content is written in Markdown format. For simple edits, you can directly edit the file on GitHub and generate a Pull Request. If you would like to use an IDE, [Visual Studio](https://visualstudio.microsoft.com/) works well with documentation using VitePress. | ||
|
||
## Working on the content | ||
|
||
- See VitePress docs on supported [Markdown Extensions](https://vitepress.vuejs.org/guide/markdown.html) and the ability to [use Vue syntax inside markdown](https://vitepress.vuejs.org/guide/using-vue.html). | ||
Please refer to the [Contributing guide](/.github/contributing.md) for more details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,10 @@ | |
"name": "docs", | ||
"version": "1.0.0", | ||
"description": "", | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"docs:dev": "vitepress dev docs", | ||
"docs:build": "vitepress build docs", | ||
"docs:preview": "vitepress preview docs" | ||
"dev": "vitepress dev docs", | ||
"build": "vitepress build docs", | ||
"preview": "vitepress preview docs" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
|