Getting Started with openstatus
You can use openstatus by either signing up for our cloud version or by self-hosting the application on your own infrastructure.
Cloud Version
Section titled “Cloud Version”The easiest way to get started is with our cloud version. You can sign up for a free account and begin monitoring your services in seconds.
Self-Hosted Version
Section titled “Self-Hosted Version”For users who want to host openstatus on their own infrastructure, all our code is open source.
We offer a few ways to get started with self-hosting:
With Docker (Recommended)
Section titled “With Docker (Recommended)”The fastest way to get started for both development and self-hosting is with Docker.
# 1. Copy environment filecp .env.docker.example .env.docker
# 2. Start all servicesdocker compose up -d
# 3. Access the applicationopen http://localhost:3002 # Dashboardopen http://localhost:3003 # Status PagesFor a complete guide on using Docker, including database setup and configuration, please see our DOCKER.md file.
With Devbox
Section titled “With Devbox”You can use Devbox to easily manage your development environment.
- Install Devbox
Terminal window curl -fsSL https://get.jetify.com/devbox | bash - Install project dependencies, build and start services
Terminal window devbox services up