Build Internal Tools & Automations in Minutes

Self-hosted platform for developers who need custom webhooks, workflows and user interfaces. Instead of writing 100+ lines of boilerplate code, write 5 lines of business logic. RapidForge handles the rest.

curl -fsSL /install.sh | sh

Core Features, Infinite Possibilities

Custom Webhooks & Endpoints

Create HTTP endpoints with few clicks at /webhooks/your-name with custom headers, status codes and request methods. Environment variables automatically injected into your Bash/Lua scripts.

# Access POST data via $PAYLOAD_DATA
echo "Processing webhook: $PAYLOAD_DATA"

or

# Access url params for get request
# Access headers with $HEADER_<Name>: $HEADER_API_KEY

api_key = os.getenv("$HEADER_API_KEY")

if api_key == "1234" then name = os.getenv("$URL_PARAM_NAME") print("Name is".. name) else print("Forbidden") os.exit("1")

end

Periodic Tasks (Cron Jobs)

Schedule recurring tasks with standard cron syntax. Audit logs and execution history built in. Perfect for backups, monitoring and data processing.

# Copy db and upload to amazon s3 every day
# Use any CLI tool you want

TIMESTAMP=$(date +%Y%m%d) pg_dump $DB > backup_${TIMESTAMP}.sql aws s3 cp backup_${TIMESTAMP}.sql $S3_BUCKET

Drag & Drop Page Builder

Create web forms and pages visually. Connect forms to endpoints automatically. Form data becomes environment variables (FORM_NAME, FORM_EMAIL) in your scripts.

# Form field "email" becomes $FORM_EMAIL
# Custom JS/CSS supported
echo "New contact: $FORM_NAME ($FORM_EMAIL)"

Built-in OAuth & Credentials

Store API keys and OAuth tokens securely. RapidForge handles the entire OAuth flow automatically. Credentials injected as environment variables in your scripts.

#!/bin/bash
# OAuth tokens auto-injected
curl -H "Authorization: Bearer $GITHUB_TOKEN"
https://api.github.com/user/repos