From bd60459a3cb012e2a0be40d15dbe798ff1c0231c Mon Sep 17 00:00:00 2001 From: kotte Date: Mon, 15 Jan 2024 13:15:50 +0100 Subject: [PATCH] Feat: Remove CLI docs (#57) --- cli/commands/build/README.md | 30 -------------------- cli/commands/new/README.md | 41 --------------------------- cli/commands/parse/README.md | 16 ----------- cli/commands/project/clone.md | 43 ---------------------------- cli/commands/project/list.md | 30 -------------------- cli/commands/workspace/list.md | 30 -------------------- cli/guides/continuous-deployment.md | 33 ---------------------- cli/guides/workspace-modules.md | 24 ---------------- cli/overview.mdx | 44 ----------------------------- docusaurus.config.js | 22 ++------------- sidebarsCli.js | 41 --------------------------- 11 files changed, 3 insertions(+), 351 deletions(-) delete mode 100644 cli/commands/build/README.md delete mode 100644 cli/commands/new/README.md delete mode 100644 cli/commands/parse/README.md delete mode 100644 cli/commands/project/clone.md delete mode 100644 cli/commands/project/list.md delete mode 100644 cli/commands/workspace/list.md delete mode 100644 cli/guides/continuous-deployment.md delete mode 100644 cli/guides/workspace-modules.md delete mode 100644 cli/overview.mdx delete mode 100644 sidebarsCli.js diff --git a/cli/commands/build/README.md b/cli/commands/build/README.md deleted file mode 100644 index dcfeeda..0000000 --- a/cli/commands/build/README.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: CLI Command build -hide_title: true ---- - -# Command: build - -Build a Noodl app without having Noodl installed and with custom build settings. - -## Synopsis - -``` -noodl-cli build [--parseEndpoint ] [--parseAppId ] -``` - -### Configuration - -#### `parseEndpoint` - -- Default: undefined -- Type: String - -The endpoint to the Parse Platform instance. - -#### `parseAppId` - -- Default: undefined -- Type: String - -The App ID for the Parse Platform instance. diff --git a/cli/commands/new/README.md b/cli/commands/new/README.md deleted file mode 100644 index 355991f..0000000 --- a/cli/commands/new/README.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: CLI Command new -hide_title: true ---- - -# Command: new - -Create a new Noodl module template. - -### Example - -```bash -# Create a React Module in the relative "./my-module" folder. -noodl-cli new react-lib ./my-module -``` - -### Available Templates - -#### `react-lib` - -Create a module with React and Logic Component support. - -#### `lib` - -Create a module with Logic Component support. - -## Synopsis - -``` -noodl-cli new