|
| 1 | +# Alauda DevOps Connectors Docs |
| 2 | + |
| 3 | +This repository contains the documentation for the Alauda DevOps Connectors Operator. |
| 4 | + |
| 5 | +## Getting Started |
| 6 | + |
| 7 | +### Prerequisites |
| 8 | + |
| 9 | +Before you begin, make sure you have the following installed on your system: |
| 10 | + |
| 11 | +- **[Node.js](https://nodejs.org/en/)** (version 14 or higher recommended) |
| 12 | +- **[npm](https://www.npmjs.com/)** (comes with Node.js) |
| 13 | +- **[Yarn](https://yarnpkg.com/)** package manager |
| 14 | + |
| 15 | +### Installation |
| 16 | + |
| 17 | +1. Clone this repository and navigate to the project directory |
| 18 | +2. Install project dependencies: |
| 19 | + |
| 20 | +```bash |
| 21 | +yarn install |
| 22 | +``` |
| 23 | + |
| 24 | +### Recommended Development Setup |
| 25 | + |
| 26 | +For the best development experience, we recommend: |
| 27 | + |
| 28 | +- **Editor**: [Visual Studio Code](https://code.visualstudio.com/) |
| 29 | +- **Extension**: [MDX extension](https://marketplace.visualstudio.com/items?itemName=unifiedjs.vscode-mdx) for enhanced markdown editing |
| 30 | + |
| 31 | +## Development Commands |
| 32 | + |
| 33 | +| Command | Description | |
| 34 | +|---------|-------------| |
| 35 | +| `yarn dev` | Start development server with hot reload | |
| 36 | +| `yarn build` | Build production-ready static files | |
| 37 | +| `yarn serve` | Preview built files locally | |
| 38 | + |
| 39 | +### Development Workflow |
| 40 | + |
| 41 | +1. **Start development**: Run `yarn dev` to launch the local server |
| 42 | +2. **Edit content**: Make changes to your markdown files - they'll update automatically |
| 43 | +3. **Navigation changes**: If you modify the sidebar navigation, restart the development server |
| 44 | +4. **Preview production**: Use `yarn build` followed by `yarn serve` to test the final build |
| 45 | + |
| 46 | +> **💡 Tip**: The development server supports hot reloading for most changes, making your workflow smooth and efficient! |
0 commit comments