Installation
Learn how to install and set up Autorun
Installation
Get started with Autorun by following this comprehensive installation guide.
Prerequisites
Before you begin, ensure you have the following installed:
- Node.js 18 or higher
- npm or yarn package manager
- A code editor (we recommend VS Code)
Make sure you have administrative privileges to install packages globally.
Installation Steps
1. Install the CLI
Install the Autorun CLI globally using npm:
npm install -g @autorun/cliOr using yarn:
yarn global add @autorun/cli2. Verify Installation
Check that the installation was successful:
autorun --versionYou should see the current version number displayed.
Video Tutorial
Here's a quick video tutorial showing the installation process:
Configuration
After installation, initialize your first project:
autorun init my-first-project
cd my-first-projectThis will create a new directory with the basic project structure:
my-first-project/
├── autorun.config.js
├── workflows/
│ └── example.yaml
└── README.mdYour project is now set up! Continue to the Quick Start Guide to create your first workflow.
Troubleshooting
If you encounter any issues during installation:
- Permission Errors: Try using
sudoon macOS/Linux or run your terminal as Administrator on Windows - Network Issues: Check your internet connection and npm registry settings
- Version Conflicts: Make sure you're using a compatible Node.js version
Join our Discord community or check out our FAQ.