Skip to content

Commit 1178cde

Browse files
author
Omri Hopson
committed
bug fixes
1 parent ef40540 commit 1178cde

3 files changed

Lines changed: 28 additions & 18 deletions

File tree

.dockerignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
node_modules
2+
dist
3+
data
4+
.git
5+
.cursor
6+
*.md
7+
!README.md
8+
dashboard/node_modules
9+
dashboard/dist
10+
docs

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN npm run build
2626

2727
# Copy SQL migration files (not copied by TypeScript compiler)
2828
RUN mkdir -p dist/store/migrations
29-
COPY src/store/migrations/*.sql dist/store/migrations/ 2>/dev/null || true
29+
COPY src/store/migrations/*.sql dist/store/migrations/
3030

3131
# Build dashboard
3232
COPY dashboard ./dashboard

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ docker pull ohopson/context-simplo:dev
4040
```bash
4141
docker run -d \
4242
--name context-simplo \
43-
-p 3000:3000 -p 3001:3001 \
43+
-p 3001:3001 \
4444
-v $(pwd):/workspace:ro \
4545
-v context-simplo-data:/data \
4646
-e LLM_PROVIDER=ollama \
@@ -60,7 +60,7 @@ docker run -d \
6060
```cmd
6161
docker run -d ^
6262
--name context-simplo ^
63-
-p 3000:3000 -p 3001:3001 ^
63+
-p 3001:3001 ^
6464
-v %cd%:/workspace:ro ^
6565
-v context-simplo-data:/data ^
6666
-e LLM_PROVIDER=ollama ^
@@ -80,7 +80,7 @@ REM -e CONTEXT_SIMPLO_WATCH=true
8080
```powershell
8181
docker run -d `
8282
--name context-simplo `
83-
-p 3000:3000 -p 3001:3001 `
83+
-p 3001:3001 `
8484
-v ${PWD}:/workspace:ro `
8585
-v context-simplo-data:/data `
8686
-e LLM_PROVIDER=ollama `
@@ -107,7 +107,7 @@ Linux requires `--add-host` for Ollama connectivity:
107107
docker run -d \
108108
--name context-simplo \
109109
--add-host=host.docker.internal:host-gateway \
110-
-p 3000:3000 -p 3001:3001 \
110+
-p 3001:3001 \
111111
-v $(pwd):/workspace:ro \
112112
-v context-simplo-data:/data \
113113
-e LLM_PROVIDER=ollama \
@@ -128,10 +128,10 @@ docker run -d \
128128
**Step 4: Open the dashboard**
129129
```bash
130130
# macOS/Linux
131-
open http://localhost:3000
131+
open http://localhost:3001
132132

133133
# Windows
134-
start http://localhost:3000
134+
start http://localhost:3001
135135
```
136136

137137
**Step 5: Configure your IDE** to use `http://localhost:3001/mcp`
@@ -153,7 +153,7 @@ docker pull ohopson/context-simplo:latest
153153
```bash
154154
docker run -d \
155155
--name context-simplo \
156-
-p 3000:3000 -p 3001:3001 \
156+
-p 3001:3001 \
157157
-v $(pwd):/workspace:ro \
158158
-v context-simplo-data:/data \
159159
-e LLM_PROVIDER=openai \
@@ -178,7 +178,7 @@ docker run -d \
178178
```cmd
179179
docker run -d ^
180180
--name context-simplo ^
181-
-p 3000:3000 -p 3001:3001 ^
181+
-p 3001:3001 ^
182182
-v %cd%:/workspace:ro ^
183183
-v context-simplo-data:/data ^
184184
-e LLM_PROVIDER=openai ^
@@ -203,7 +203,7 @@ REM -e CONTEXT_SIMPLO_WATCH=true
203203
```powershell
204204
docker run -d `
205205
--name context-simplo `
206-
-p 3000:3000 -p 3001:3001 `
206+
-p 3001:3001 `
207207
-v ${PWD}:/workspace:ro `
208208
-v context-simplo-data:/data `
209209
-e LLM_PROVIDER=openai `
@@ -225,10 +225,10 @@ docker run -d `
225225
**Step 3: Open the dashboard**
226226
```bash
227227
# macOS/Linux
228-
open http://localhost:3000
228+
open http://localhost:3001
229229

230230
# Windows
231-
start http://localhost:3000
231+
start http://localhost:3001
232232
```
233233

234234
**Step 4: Configure your IDE** to use `http://localhost:3001/mcp`
@@ -250,7 +250,7 @@ docker pull ohopson/context-simplo:latest
250250
```bash
251251
docker run -d \
252252
--name context-simplo \
253-
-p 3000:3000 -p 3001:3001 \
253+
-p 3001:3001 \
254254
-v $(pwd):/workspace:ro \
255255
-v context-simplo-data:/data \
256256
-e LLM_PROVIDER=none \
@@ -270,7 +270,7 @@ docker run -d \
270270
```cmd
271271
docker run -d ^
272272
--name context-simplo ^
273-
-p 3000:3000 -p 3001:3001 ^
273+
-p 3001:3001 ^
274274
-v %cd%:/workspace:ro ^
275275
-v context-simplo-data:/data ^
276276
-e LLM_PROVIDER=none ^
@@ -290,7 +290,7 @@ REM -e CONTEXT_SIMPLO_WATCH=true
290290
```powershell
291291
docker run -d `
292292
--name context-simplo `
293-
-p 3000:3000 -p 3001:3001 `
293+
-p 3001:3001 `
294294
-v ${PWD}:/workspace:ro `
295295
-v context-simplo-data:/data `
296296
-e LLM_PROVIDER=none `
@@ -307,10 +307,10 @@ docker run -d `
307307
**Step 3: Open the dashboard**
308308
```bash
309309
# macOS/Linux
310-
open http://localhost:3000
310+
open http://localhost:3001
311311

312312
# Windows
313-
start http://localhost:3000
313+
start http://localhost:3001
314314
```
315315

316316
**Step 4: Configure your IDE** to use `http://localhost:3001/mcp`
@@ -442,7 +442,7 @@ Context-Simplo combines the speed of Arbor's Rust architecture with the rich too
442442
- [Configuration Reference](docs/configuration.md)
443443
- [MCP Tools Reference](docs/mcp-tools.md)
444444
- [Architecture Overview](docs/architecture.md)
445-
- [Development Guide](CONTRIBUTING.md)
445+
- [Development Guide](docs/CONTRIBUTING.md)
446446

447447
## License
448448

0 commit comments

Comments
 (0)