Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 24 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,36 @@ ShipSec Studio provides a visual DSL and runtime for building, executing, and mo

## 🚀 Deployment Options

### 1. ShipSec Cloud (Preview)
### 1. Shipsec Self-Host with Docker (Recommended)

The easiest way to run ShipSec Studio on your own infrastructure:

#### One-Line Install

```bash
curl -fsSL https://raw.githubusercontent.com/ShipSecAI/studio/main/install.sh | bash
```

This installer will:
- Check and install missing dependencies (docker, just, curl, jq, git)
- Start Docker if not running
- Clone the repository and start all services
- Guide you through any required setup steps

Once complete, visit **http://localhost:8090** to access ShipSec Studio.

### 2. ShipSec Cloud (Preview)
The fastest way to test ShipSec Studio without managing infrastructure.
- **Try it out:** [studio.shipsec.ai](https://studio.shipsec.ai)
- **Note:** ShipSec Studio is under active development. The cloud environment is a technical preview for evaluation and sandbox testing.

### 2. Self-Host (Docker)
### 3. Self-Host (Docker)
For teams requiring data residency and air-gapped security orchestrations. This setup runs the full stack (Frontend, Backend, Worker, and Infrastructure).

**Prerequisites:** Docker, `just` command runner.
**Prerequisites:**
- **[docker](https://www.docker.com/)** - For running the application and security components
- **[just](https://github.com/casey/just)** - Command runner for simplified workflows
- **curl** and **jq** - For fetching release information

```bash
# Clone and start the latest stable release
Expand Down
Loading