-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GITBOOK-1: change request with no subject merged in GitBook
- Loading branch information
1 parent
36d4eaa
commit 6fd59fb
Showing
23 changed files
with
106 additions
and
118 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
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,23 +1,23 @@ | ||
# Table of contents | ||
|
||
* [Hayde](README.md) | ||
* [docs](docs/README.md) | ||
* [brand-colors](docs/brand-colors.md) | ||
* [♥ Features](features/README.md) | ||
* [AI module](features/AI.md) | ||
* [Builder.IO module](features/builderIO.md) | ||
* [Chakra UI module](features/chakraUI.md) | ||
* [Create Plugin module](features/createPlugin.md) | ||
* [CSS module](features/css.md) | ||
* [emmet](features/emmet.md) | ||
* [General module](features/general.md) | ||
* [Material UI module](features/materialUI.md) | ||
* [React.js module](features/reactJS.md) | ||
* [Storybook module](features/storybook.md) | ||
* [📔 Documentation](docs/README.md) | ||
* [CLI Arguments](docs/cli-arguments.md) | ||
* [Options](docs/options.md) | ||
* [Profiles](docs/profiles.md) | ||
* [NPM script trigger](docs/npm-scripts.md) | ||
* [How to Create Custom Plugin](docs/how-to-create-custom-plugin.md) | ||
* [Contributor Covenant Code of Conduct](docs/contributing.md) | ||
* [how-to-create-custom-plugin](docs/how-to-create-custom-plugin.md) | ||
* [NPM Feature](docs/npm-scripts.md) | ||
* [Hayde | Options](docs/options.md) | ||
* [Examples](examples/readme.md) | ||
* [src](src/README.md) | ||
* [features](src/features/README.md) | ||
* [AI module](src/features/AI/readme.md) | ||
* [Builder.IO module](src/features/builderIO/readme.md) | ||
* [Chakra UI module](src/features/chakraUI/readme.md) | ||
* [Create Plugin module](src/features/createPlugin/readme.md) | ||
* [CSS module](src/features/css/readme.md) | ||
* [emmet](src/features/emmet/readme.md) | ||
* [General module](src/features/general/readme.md) | ||
* [Material UI module](src/features/materialUI/readme.md) | ||
* [React.js module](src/features/reactJS/readme.md) | ||
* [Storybook module](src/features/storybook/readme.md) | ||
* [🚀 Examples](examples/readme.md) | ||
* [Source Code](src.md) |
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,2 +1,2 @@ | ||
# docs | ||
# 📔 Documentation | ||
|
This file was deleted.
Oops, something went wrong.
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,11 +1,11 @@ | ||
## CLI Arguments | ||
# CLI Arguments | ||
|
||
The following arguments are available for the CLI: | ||
|
||
| Argument | Description | | ||
| --------------------- | -------------------------------------------- | | ||
| `--help` | Show help | | ||
| `--debug` | Output extra debugging | | ||
| `--noFormat` | Disable formatting on file content | | ||
| `--disableTelemetry` | disable telemetry (it's not implemented yet) | | ||
| `--profile <profile>` | use a specific profile | | ||
| Argument | Description | | ||
| --------------------- | ---------------------------------------------------------------- | | ||
| `--help` | Show help | | ||
| `--debug` | Output extra debugging | | ||
| `--noFormat` | Disable formatting on file content | | ||
| `--disableTelemetry` | disable telemetry (it's not implemented yet) | | ||
| `--profile <profile>` | use a specific profile (`--profile ai` to call `.hayde-ai-json`) | |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Profiles | ||
|
||
If you want to have multiple `.hayde` file, you can just create the file with your profile. For example, you can create two files called `.hayde.json` and `.hayde.ai.json`. Then, you can run the following command to use the `.hayde.ai.json` file. | ||
|
||
```bash | ||
npx hayde --profile ai | ||
``` |
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,9 +1,11 @@ | ||
## Examples | ||
# 🚀 Examples | ||
|
||
You can just copy JSON files from this folder and paste to root folder of your project. Then you can run Hayde with the following command: | ||
You can just copy JSON files from [Examples](https://github.com/Sly777/hayde/tree/main/examples) folder and paste any of them to the root folder of your project. Then you can run Hayde with the following command: | ||
|
||
```bash | ||
npx hayde | ||
``` | ||
|
||
For more information on the available options, please check the [options](../docs/options.md) page. | ||
|
||
Click here to see the [GitHub](https://github.com/Sly777/hayde/tree/main/examples) page. |
File renamed without changes.
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,2 @@ | ||
# ♥ Features | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.