vibespot 1.3.1 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +42 -2
- package/dist/index.js +370 -370
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
- package/ui/dashboard.js +4 -3
- package/ui/docs/index.html +105 -4
- package/ui/docs/screenshots/module-overview-slideout.png +0 -0
- package/ui/docs/screenshots.zip +0 -0
- package/ui/index.html +26 -21
- package/ui/settings.js +22 -16
- package/ui/docs/screenshots/asset-type-cards.png +0 -0
- package/ui/docs/screenshots/deploy-progress.png +0 -0
- package/ui/docs/screenshots/email-client-preview.png +0 -0
- package/ui/docs/screenshots/pipeline-progress.png +0 -0
- package/ui/docs/screenshots/project-overview-table.png +0 -0
package/README.md
CHANGED
|
@@ -139,6 +139,7 @@ vibeSpot needs an AI engine to generate code. Use **one** of these:
|
|
|
139
139
|
| Claude OAuth | Run `claude setup-token` → paste token | Uses your Claude Pro/Max subscription |
|
|
140
140
|
| OpenAI API | No install — just need an API key | Any OpenAI model |
|
|
141
141
|
| Gemini API | No install — just need an API key | Google Gemini models |
|
|
142
|
+
| [Langdock](https://langdock.com) | No install — just need a Langdock API key | EU-hosted gateway (Frankfurt), GDPR-compliant |
|
|
142
143
|
| [Claude Code](https://claude.ai/code) | `npm install -g @anthropic-ai/claude-code` | Uses your Claude subscription |
|
|
143
144
|
| [Gemini CLI](https://github.com/google-gemini/gemini-cli) | `npm install -g @google/gemini-cli` | Uses your Google AI account |
|
|
144
145
|
| [OpenAI Codex](https://github.com/openai/codex) | `npm install -g @openai/codex` | Uses your OpenAI account |
|
|
@@ -155,6 +156,18 @@ The browser opens automatically. Enter your API key in the setup screen, create
|
|
|
155
156
|
|
|
156
157
|
Open **Settings → HubSpot** and add your account with a Personal Access Key (PAK). vibeSpot connects directly via the HubSpot API — no CLI installation needed. You can also switch to legacy CLI mode if you prefer.
|
|
157
158
|
|
|
159
|
+
### Run with Docker
|
|
160
|
+
|
|
161
|
+
Prefer not to install Node.js? Pull the published image instead:
|
|
162
|
+
|
|
163
|
+
```bash
|
|
164
|
+
docker run --rm -p 4200:4200 \
|
|
165
|
+
-e ANTHROPIC_API_KEY=sk-ant-... \
|
|
166
|
+
ghcr.io/borismichel/vibespot:latest
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
Or use the bundled `docker-compose.yml` (Caddy + Postgres + auth-gate slot) for production deployments. See [docs/docker.md](docs/docker.md) for the full guide.
|
|
170
|
+
|
|
158
171
|
## After Building Your Page
|
|
159
172
|
|
|
160
173
|
Once your modules are ready:
|
|
@@ -168,6 +181,26 @@ Once your modules are ready:
|
|
|
168
181
|
7. Edit text, images, and colors in the page editor
|
|
169
182
|
8. Preview and publish!
|
|
170
183
|
|
|
184
|
+
## Docker Deployment
|
|
185
|
+
|
|
186
|
+
Run vibeSpot as a containerised service for your team — LAN, VPN, or HTTPS.
|
|
187
|
+
|
|
188
|
+
```bash
|
|
189
|
+
cp .env.example .env # set at least one AI API key
|
|
190
|
+
docker compose up -d # plain HTTP on port 4200
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
For public HTTPS with automatic TLS via Caddy:
|
|
194
|
+
|
|
195
|
+
```bash
|
|
196
|
+
# In .env, set VIBESPOT_DOMAIN=vibespot.example.com
|
|
197
|
+
docker compose --profile https up -d
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
All AI keys, engine selection, and integrations are configurable via environment variables — see `.env.example` for the full list. Themes and config persist across container restarts via named Docker volumes.
|
|
201
|
+
|
|
202
|
+
For reverse proxy configs (nginx, Traefik, k8s Ingress), Kubernetes manifests, backup/restore, and security guidance, see the full **[Docker Deployment Guide](docs/docker-deployment.md)**.
|
|
203
|
+
|
|
171
204
|
## Commands
|
|
172
205
|
|
|
173
206
|
```bash
|
|
@@ -189,16 +222,23 @@ Most users only need `npx vibespot` — the web UI handles everything.
|
|
|
189
222
|
|
|
190
223
|
Settings are managed in the **Settings** panel (tabbed: AI, HubSpot, Figma, GitHub, vibeSpot) and saved in `~/.vibespot/config.json`:
|
|
191
224
|
|
|
192
|
-
- `aiEngine` — Your preferred AI engine (`anthropic-api`, `claude-oauth`, `openai-api`, `gemini-api`, `claude-code`, `gemini-cli`, `codex-cli`)
|
|
193
|
-
- `anthropicApiKey`, `openaiApiKey`, `geminiApiKey` — API keys (stored locally, never sent except to the provider)
|
|
225
|
+
- `aiEngine` — Your preferred AI engine (`anthropic-api`, `claude-oauth`, `openai-api`, `gemini-api`, `langdock-api`, `claude-code`, `gemini-cli`, `codex-cli`)
|
|
226
|
+
- `anthropicApiKey`, `openaiApiKey`, `geminiApiKey`, `langdockApiKey` — API keys (stored locally, never sent except to the provider)
|
|
227
|
+
- `langdockBaseUrl` — Override for self-hosted Langdock deployments (default: `https://api.langdock.com/anthropic`)
|
|
194
228
|
- `hubspotAccounts` — Connected HubSpot accounts (PAK-based auth)
|
|
195
229
|
- `hubspotUploadMode` — `api` (default, direct API) or `cli` (legacy, requires HubSpot CLI)
|
|
196
230
|
- `agenticConcurrency` — Max parallel module generation calls (default: 20)
|
|
197
231
|
- `figmaToken` — Figma Personal Access Token for design import
|
|
198
232
|
- `enabledCLITools` — Which CLI tools to detect on settings load
|
|
199
233
|
|
|
234
|
+
All settings can also be provided via environment variables for headless/Docker deployments — see [Docker Deployment](docs/docker-deployment.md) and `.env.example` for the full list.
|
|
235
|
+
|
|
200
236
|
## What's New
|
|
201
237
|
|
|
238
|
+
### Unreleased
|
|
239
|
+
- **Docker deployment** — run vibeSpot as a containerised service with `docker compose up -d`. Includes Caddy auto-HTTPS, env var configuration for all AI keys/integrations, named volume persistence, health check endpoint, and deployment docs for nginx/k8s
|
|
240
|
+
- **Langdock AI adapter** — EU-hosted AI engine via Langdock gateway
|
|
241
|
+
|
|
202
242
|
### v1.3.1
|
|
203
243
|
- **Project overview table** — sortable table view for all projects with page, email, module, and brand asset counts
|
|
204
244
|
- **Bulk operations** — select multiple projects for bulk duplicate or delete
|