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
8 changes: 2 additions & 6 deletions docs/getting-started/complete-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,14 +152,10 @@ Update your `agent-card.json` to include the public key:
For local development, run capiscio-server with Docker:

!!! note "Enterprise License Required"
Access to the capiscio-server repository requires an enterprise license. [Contact Sales](mailto:sales@capisc.io) for access.
The CapiscIO server is distributed as a **closed-source binary** or **Docker container** to licensed enterprise customers. [Contact Sales](mailto:sales@capisc.io) for access.

```bash
# Clone the server repo (enterprise customers only)
git clone https://github.com/capiscio/capiscio-server
cd capiscio-server

# Start with Docker Compose
# Start with Docker Compose (using provided compose file)
docker-compose up -d
```

Expand Down
16 changes: 4 additions & 12 deletions docs/reference/server/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ Deploy capiscio-server in production or development environments.

## Prerequisites

- **Go 1.23+** (for building from source)
- **PostgreSQL 15+** (database)
- **Docker** (recommended for deployment)

Expand Down Expand Up @@ -255,21 +254,14 @@ spec:

---

## Building from Source
## Running the Binary

!!! note "Enterprise License Required"
Access to the capiscio-server repository requires an enterprise license. [Contact Sales](mailto:sales@capisc.io) for access.
The CapiscIO server is distributed as a **closed-source binary** or **Docker container** to licensed enterprise customers. Source code is not shipped. [Contact Sales](mailto:sales@capisc.io) for access.

```bash
# Clone repository (enterprise customers only)
git clone https://github.com/capiscio/capiscio-server
cd capiscio-server

# Build
make build

# Run
./bin/server
# Run the server binary directly
./capiscio-server
```

---
Expand Down
18 changes: 7 additions & 11 deletions docs/reference/server/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,20 +174,16 @@ Trust level is specified in badge requests:
### Local Development

!!! note "Enterprise License Required"
Access to the capiscio-server repository requires an enterprise license. [Contact Sales](mailto:sales@capisc.io) for access.
The CapiscIO server is distributed as a **closed-source binary** (or Docker container) to licensed enterprise customers. [Contact Sales](mailto:sales@capisc.io) for access.

```bash
# Clone the repo (enterprise customers only)
git clone https://github.com/capiscio/capiscio-server
cd capiscio-server
# Option 1: Docker (recommended)
docker run -d -p 8080:8080 \
-e DATABASE_URL=postgres://user:pass@localhost/capiscio \
registry.capisc.io/capiscio-server:latest

# Start PostgreSQL
docker-compose up -d db

# Run the server
./run_dev.sh
# or
make run
# Option 2: Binary
./capiscio-server
```

The server starts at `http://localhost:8080`.
Expand Down
Loading