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
Create HTTP endpoints with few clicks at or 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 Schedule recurring tasks with standard cron syntax. Audit logs and execution history built in. Perfect for backups, monitoring and data processing. TIMESTAMP=$(date +%Y%m%d)
pg_dump $DB > backup_${TIMESTAMP}.sql
aws s3 cp backup_${TIMESTAMP}.sql $S3_BUCKET Create web forms and pages visually. Connect forms to endpoints automatically. Form data becomes environment variables (FORM_NAME, FORM_EMAIL) in your scripts. Store API keys and OAuth tokens securely. RapidForge handles the entire OAuth flow automatically. Credentials injected as environment variables in your scripts.Core Features, Infinite Possibilities
Custom Webhooks & Endpoints
/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"
# Access url params for get request
# Access headers with $HEADER_<Name>: $HEADER_API_KEY
Periodic Tasks (Cron Jobs)
# Copy db and upload to amazon s3 every day
# Use any CLI tool you want
Drag & Drop Page Builder
# Form field "email" becomes $FORM_EMAIL
# Custom JS/CSS supported
echo "New contact: $FORM_NAME ($FORM_EMAIL)"
Built-in OAuth & Credentials
#!/bin/bash
# OAuth tokens auto-injected
curl -H "Authorization: Bearer $GITHUB_TOKEN"
https://api.github.com/user/repos