Skip to content

Getting Started

Getting started with UX

To get started with Omnistrate UX, its really simple and you just need to follow quick self-onboarding steps:

Signup

Go here and follow the instructions. Once logged in, click "Get Started" to start building your SaaS.

Configure Cloud Accounts

To configure your own account, you can grant us a security role through different mechanisms to provision infrastructure on your behalf. If you wish to host on our account, you can skip this step.

Here is how it looks like:

Configure Accounts

  • For AWS, we have a 1-click integration to create your Cloudformation stack. For step-by-step instructions, here is a link to the video
  • Alternatively, you can follow our terraform-setup guide to create a security role. For step-by-step instructions, here is a link to the video

Note

If you encounter any error due to already created AWSLoadBalancerControllerIAMPolicy policy, please review your current policy and merge it against our policy as mentioned here

Build SaaS Offer

There are several options to start building your SaaS offer:

  • Click "Hello world project" to build an example Mage AI service
  • Click "Bring your container image" to build a service from your container image
  • Click "Bring your Docker Compose" to build a service with your own Compose spec or one of our Certified templates.
  • Reach out to [email protected] to build a service with Kubernetes Operators
  • Reach out to [email protected] to build a service with Helm Charts

Note

To learn more on how to build with your Compose spec, please see this. For any questions or help, please reach out to us at support@omnistrate.com and we will be happy to help.

Here is how it looks like:

Build SaaS Offer

Once you have submitted your service build, Omnistrate will build your service definition and deploy your SaaS offer in a Development environment

Launch SaaS Offer

Once your SaaS Offer has been created, you can optionally decide to make your SaaS Offer live for any one to sign-up and access publicly.

Here is how it looks like:

Launch SaaS Offer

If you click "Yes", Omnistrate will deploy your SaaS offer in a Production environment.

Getting started with CLI or API

Alternatively, check out our Developer CLI and follow the instructions here

For API, please see here

Getting started video

Watch the video

Hello world example using PostgreSQL

One of the easiest ways to get going is to leverage compose templates. You can existing templates or create your own. Here is a sample compose spec to create single writer Postgres SaaS:

version: '3.9'
services:
  postgres:
    image: postgres
    ports:
      - '5432:5432'
    environment:
      - SECURITY_CONTEXT_USER_ID=999
      - SECURITY_CONTEXT_GROUP_ID=999
      - POSTGRES_USER=username
      - POSTGRES_PASSWORD=password
      - PGDATA=/var/lib/postgresql/data/dbdata
    volumes:
      - ./data:/var/lib/postgresql/data

In the above case:

  • We are using only 1 service component (postgres) with the standard image (postgres) and infra (port: 5432)
  • Given no account config is specified, the infrastructure for your SaaS is provisioned in the Omnistrate account
  • There are a few static environment variables that will be injected into the runtime process like POSTGRES_USER

In general, the compose config allows you to specify:

  • Service components and relationship across them
  • Image(s)
  • Environment
  • Infrastructure
  • Capabilities
  • Account config information
  • Enable/Disable Integrations
  • SaaS experience (input/output params with constraints)

For detailed setup instructions, please visit this page

Here is the generated Postgres SaaS from the above spec looks like:

Basic Postgres SaaS Basic Postgres SaaS tablestakes

In addition, Omnistrate fully automates scaling, monitoring, billing, observability, patching and much more.

As next steps:

  • To learn more on what we do, visit this page
  • To learn more about how to build your SaaS using Omnistrate, visit this page