Documentation

Learn how Tidedge Serverless works, explore core concepts, and find practical examples for deploying your applications. Whether you're getting started or diving deep into architecture, you'll find what you need here.

Quick Start

Deploy your first serverless application in under a minute:

# Create a dev stack with services
sf stack create dev --entrypoint frontend
sf stack add dev frontend --image nodetest --tag 0.0.5

# Access your app (VM boots on first request)
curl http://frontend.dev.localhost.openiap.io

# Create a PR preview variant (only overridden services cost $)
sf variant create dev pr-42 --override frontend.tag=pr-42

# Access the PR preview
curl http://frontend.dev--pr-42.localhost.openiap.io