Deploy your functions to Ollie Hub with instant builds, real-time monitoring, and automatic scaling. From code upload to live function in under 60 seconds.
Upload Your Code
package.json
. We support TypeScript, JavaScript, and all popular npm packages.index.ts
and package.json
. The index.ts
file must export a handler
function.Automatic Build Process
Activate Your Function
Test Your Function
Status | Description | What’s Happening |
---|---|---|
🔄 IN_PROGRESS | Build is actively running | Dependencies installing, code compiling |
✅ SUCCEEDED | Build completed successfully | Function deployed, ready for activation |
❌ FAILED | Build encountered an error | Check logs for specific error details |
⏹️ STOPPED | Build was manually stopped | Build was cancelled or interrupted |
409 Conflict
response. Wait for the current build to complete before starting a new one.🔴 Dependencies Failed to Install
Check your package.json for issues:
🟡 TypeScript Compilation Errors
🟣 Missing Entry Point
handler
function from your main file.package.json
. Remove unused packages to reduce build time and function size.