diff --git a/site/docs/quickstart.html b/site/docs/quickstart.html index ad11250..adb09b0 100644 --- a/site/docs/quickstart.html +++ b/site/docs/quickstart.html @@ -328,35 +328,23 @@
claude CLI installed and authenticatedClone disinto onto your server. This is the factory — the code that runs your agents.
-git clone http://localhost:3000/johba/disinto.git ~/disinto
+ Clone disinto, then bring up the full stack — built-in Forgejo, Woodpecker CI, and agent runtime.
+git clone https://codeberg.org/johba/disinto.git ~/disinto
cd ~/disinto
-cp .env.example .env
- Edit .env with your tokens:
-# Required
-FORGE_TOKEN=your_codeberg_token
-FORGE_REVIEW_TOKEN=your_review_bot_token
-
-# Woodpecker CI
-WOODPECKER_TOKEN=your_woodpecker_token
-WOODPECKER_SERVER=http://localhost:8000
-
-# Timeouts
-CLAUDE_TIMEOUT=7200
+cp .env.example .env
+# Edit .env with your Anthropic API key
disinto init provisions a local Forgejo instance, clones the repo, creates the project config, adds labels, and installs cron jobs.
bin/disinto init http://localhost:3000/you/your-project
+ disinto init creates your repo on the built-in Forgejo, clones it, generates the project config, adds labels, and installs cron jobs. Then disinto up starts everything.
bin/disinto init user/your-project
+bin/disinto up
=== disinto init ===
@@ -402,12 +391,12 @@ Done. Project your-project is ready.
3
Prepare your repo
Your project needs three things before agents can work on it:
+Your project needs two things before agents can work on it:
.woodpecker/*.yml file. Agents wait for CI before reviewing or merging.Branch protection and the review bot are pre-configured on the built-in Forgejo. If you're connecting to an external forge, set those up manually.
# Create CLAUDE.md in your project
cat > ~/your-project/CLAUDE.md <<'EOF'
# Your Project
diff --git a/site/index.html b/site/index.html
index ec9fdd9..b57d74f 100644
--- a/site/index.html
+++ b/site/index.html
@@ -657,12 +657,18 @@
- One VPS, one repo, one battery
+ One command, one stack, one battery
- Bash scripts and Claude. No Kubernetes, no microservices,
- no SaaS dependencies. Runs on an 8GB VPS.
- Point it at a forge repo with a
- Woodpecker CI pipeline and it starts building.
+ Built-in Forgejo + Woodpecker CI. No external forge,
+ no CI setup, no SaaS dependencies. Two commands on an 8GB VPS:
+
+
+ disinto init user/repo → disinto up
+
+
+ The stack ships with a local Forgejo git forge and
+ pre-configured Woodpecker CI — or connect to your
+ existing Codeberg repo if you prefer.
Built for web apps and crypto projects.
@@ -706,7 +712,7 @@
dashboard
- Under the hood: dev, review, planner, gardener, supervisor, predictor, action, vault — eight agents orchestrated by cron and bash.
+ Under the hood: dev, review, planner, gardener, supervisor, predictor, action, vault, exec — nine agents orchestrated by cron and bash.