diff --git a/docs/getting-started/complete-workflow.md b/docs/getting-started/complete-workflow.md index 0fc6007..1ccc508 100644 --- a/docs/getting-started/complete-workflow.md +++ b/docs/getting-started/complete-workflow.md @@ -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 ``` diff --git a/docs/reference/server/deployment.md b/docs/reference/server/deployment.md index d8f75ce..c64f35c 100644 --- a/docs/reference/server/deployment.md +++ b/docs/reference/server/deployment.md @@ -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) @@ -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 ``` --- diff --git a/docs/reference/server/index.md b/docs/reference/server/index.md index c644d2a..29a6f89 100644 --- a/docs/reference/server/index.md +++ b/docs/reference/server/index.md @@ -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`.