| layout | page |
|---|---|
| title | Getting Started |
| permalink | /documentation/getting-started/ |
| order | 1 |
| toc | true |
This guide will walk you through the process of creating your first recurring script using Croncode.
Start by entering a natural language description of what you want to achieve and how often it should run. For example:
"Fetch the latest news from Hacker News every morning at 8 AM and email me a summary."
Croncode will process your request and generate:
- The Script: A complete, ready-to-run script in your language of choice (Node.js, Python, or Bash).
- The Schedule: A standard crontab expression with a human-readable explanation.
Before deploying, you can use our in-browser sandbox to verify the script's behavior. The sandbox provides a secure environment to run the code and check the output without needing to set up anything on your local machine.
Once you're satisfied with the generated script, you can deploy it to your server using the provided cron schedule and instructions.
If you'd like to contribute or run the application on your own machine, follow these steps:
- Node.js: LTS version recommended.
- Git: For cloning the repository.
- Clone the Repository:
git clone https://github.com/aaronbronow/croncode.git cd croncode - Install Dependencies:
npm install
- Run Development Server:
The application will be available at
npm run dev
http://localhost:5173.