Skip to content

Commit 1bbf5bb

Browse files
author
wisedev
committed
feat: repo ownership corrections
1 parent 7b88619 commit 1bbf5bb

5 files changed

Lines changed: 18 additions & 18 deletions

File tree

backend/MaIN.Docs.Api/Services/GitHubService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class GitHubService(HttpClient http, IConfiguration config, ILogger<GitHu
5353
{
5454
private static readonly JsonSerializerOptions JsonOpts = new() { PropertyNameCaseInsensitive = true };
5555

56-
private string Repo => config["GITHUB_REPO"] ?? "wisedev-code/MaIN.NET";
56+
private string Repo => config["GITHUB_REPO"] ?? "mobitouchOS/MaIN.NET";
5757

5858
public async Task<List<GitHubIssue>> ListIssuesAsync(string? label = null)
5959
{

docs-content/docker.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Docker — MaIN.NET InferPage
22

3-
MaIN.NET ships a ready-to-run Docker image called **InferPage** (`ghcr.io/wisedev-code/main-inferpage`). It is a Blazor Server web app that wraps MaIN.NET and exposes a browser-based chat UI on **port 5555**. Zero code required — pull, run, chat.
3+
MaIN.NET ships a ready-to-run Docker image called **InferPage** (`ghcr.io/mobitouchos/main-inferpage`). It is a Blazor Server web app that wraps MaIN.NET and exposes a browser-based chat UI on **port 5555**. Zero code required — pull, run, chat.
44

55
InferPage is genuinely multiplatform. The same repo produces four image tags targeting different hardware:
66

@@ -40,7 +40,7 @@ InferPage is genuinely multiplatform. The same repo produces four image tags tar
4040
docker run -d \
4141
-p 5555:5555 \
4242
-v ~/models:/app/Models \
43-
ghcr.io/wisedev-code/main-inferpage:cpu
43+
ghcr.io/mobitouchos/main-inferpage:cpu
4444
```
4545

4646
### Windows / Linux with NVIDIA GPU
@@ -52,15 +52,15 @@ docker run -d \
5252
--gpus all \
5353
-p 5555:5555 \
5454
-v ~/models:/app/Models \
55-
ghcr.io/wisedev-code/main-inferpage:cuda
55+
ghcr.io/mobitouchos/main-inferpage:cuda
5656
```
5757

5858
### External Ollama (Ollama already running on the host)
5959

6060
```bash
6161
docker run -d \
6262
-p 5555:5555 \
63-
ghcr.io/wisedev-code/main-inferpage:ollama
63+
ghcr.io/mobitouchos/main-inferpage:ollama
6464
```
6565

6666
The `:ollama` image defaults `MaIN__OllamaBaseUrl` to `http://host.docker.internal:11434`. Override this to point at a remote Ollama.
@@ -71,7 +71,7 @@ The `:ollama` image defaults `MaIN__OllamaBaseUrl` to `http://host.docker.intern
7171
docker run -d \
7272
-p 5555:5555 \
7373
-v ollama-data:/root/.ollama \
74-
ghcr.io/wisedev-code/main-inferpage:ollama-bundled
74+
ghcr.io/mobitouchos/main-inferpage:ollama-bundled
7575
```
7676

7777
The entrypoint script starts Ollama first, then InferPage. Pull models via `docker exec <id> ollama pull gemma3:4b` or from the UI.
@@ -83,7 +83,7 @@ The entrypoint script starts Ollama first, then InferPage. Pull models via `dock
8383
```yaml
8484
services:
8585
inferpage:
86-
image: ghcr.io/wisedev-code/main-inferpage:cpu
86+
image: ghcr.io/mobitouchos/main-inferpage:cpu
8787
ports:
8888
- "5555:5555"
8989
volumes:
@@ -96,7 +96,7 @@ services:
9696
```yaml
9797
services:
9898
inferpage:
99-
image: ghcr.io/wisedev-code/main-inferpage:cuda
99+
image: ghcr.io/mobitouchos/main-inferpage:cuda
100100
ports:
101101
- "5555:5555"
102102
volumes:
@@ -116,7 +116,7 @@ services:
116116
```yaml
117117
services:
118118
inferpage:
119-
image: ghcr.io/wisedev-code/main-inferpage:cpu
119+
image: ghcr.io/mobitouchos/main-inferpage:cpu
120120
ports:
121121
- "5555:5555"
122122
environment:

frontend/public/docs/docker.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ It is **genuinely multiplatform**:
2424
docker run -d \
2525
-p 5555:5555 \
2626
-v ~/models:/app/Models \
27-
ghcr.io/wisedev-code/main-inferpage:cpu
27+
ghcr.io/mobitouchos/main-inferpage:cpu
2828
```
2929

3030
Open `http://localhost:5555` — done.
@@ -36,7 +36,7 @@ docker run -d \
3636
--gpus all \
3737
-p 5555:5555 \
3838
-v ~/models:/app/Models \
39-
ghcr.io/wisedev-code/main-inferpage:cuda
39+
ghcr.io/mobitouchos/main-inferpage:cuda
4040
```
4141

4242
The `:cuda` image is based on `nvidia/cuda:12.9.1-runtime-ubuntu24.04` and automatically enables all visible GPUs. Make sure the [NVIDIA Container Toolkit](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/install-guide.html) is installed.
@@ -49,7 +49,7 @@ If you already have Ollama running locally, skip the model volume entirely:
4949
docker run -d \
5050
-p 5555:5555 \
5151
-e MaIN__OllamaBaseUrl=http://host.docker.internal:11434 \
52-
ghcr.io/wisedev-code/main-inferpage:ollama
52+
ghcr.io/mobitouchos/main-inferpage:ollama
5353
```
5454

5555
### Bundled Ollama (zero dependencies)
@@ -58,7 +58,7 @@ docker run -d \
5858
docker run -d \
5959
-p 5555:5555 \
6060
-v ollama-data:/root/.ollama \
61-
ghcr.io/wisedev-code/main-inferpage:ollama-bundled
61+
ghcr.io/mobitouchos/main-inferpage:ollama-bundled
6262
```
6363

6464
Ollama starts automatically inside the container. Pull models through the UI or via `docker exec`.
@@ -68,7 +68,7 @@ Ollama starts automatically inside the container. Pull models through the UI or
6868
```yaml
6969
services:
7070
inferpage:
71-
image: ghcr.io/wisedev-code/main-inferpage:cpu
71+
image: ghcr.io/mobitouchos/main-inferpage:cpu
7272
ports:
7373
- "5555:5555"
7474
volumes:
@@ -118,7 +118,7 @@ docker run -d \
118118
-p 5555:5555 \
119119
-e MaIN__BackendType=2 \
120120
-e MaIN__GeminiKey=your-key \
121-
ghcr.io/wisedev-code/main-inferpage:cpu
121+
ghcr.io/mobitouchos/main-inferpage:cpu
122122
```
123123

124124
Backend type values: `0` = Self (local), `1` = OpenAI, `2` = Gemini, `3` = Anthropic, `4` = GroqCloud, `7` = Ollama.

frontend/src/app/components/navbar/navbar.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
}
5858
</button>
5959

60-
<a href="https://github.com/wisedev-code/MaIN.NET" target="_blank" class="nav-link nav-icon" title="GitHub">
60+
<a href="https://github.com/mobitouchOS/MaIN.NET" target="_blank" class="nav-link nav-icon" title="GitHub">
6161
<svg width="18" height="18" viewBox="0 0 24 24" fill="currentColor">
6262
<path d="M12 0C5.374 0 0 5.373 0 12c0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23A11.509 11.509 0 0 1 12 5.803c1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576C20.566 21.797 24 17.3 24 12c0-6.627-5.373-12-12-12z"/>
6363
</svg>

frontend/src/app/pages/home/home.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ <h1 class="hero-title"><span class="htt-desktop">What can I help you<br></span><
162162
</div>
163163
<div class="ic-info">
164164
<span class="ic-title">{{ msg.issueProposed?.title ?? 'GitHub Issue' }}</span>
165-
<span class="ic-meta">wisedev-code/MaIN.NET · proposal · auto-closes in 3 days</span>
165+
<span class="ic-meta">mobitouchOS/MaIN.NET · proposal · auto-closes in 3 days</span>
166166
</div>
167167
<div class="ic-open-btn">
168168
<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
@@ -183,7 +183,7 @@ <h1 class="hero-title"><span class="htt-desktop">What can I help you<br></span><
183183
</div>
184184
<div class="ic-info">
185185
<span class="ic-title">{{ msg.prProposed?.title ?? 'Pull Request' }}</span>
186-
<span class="ic-meta">{{ msg.prProposed?.headBranch }} → {{ msg.prProposed?.baseBranch }} · wisedev-code/MaIN.NET</span>
186+
<span class="ic-meta">{{ msg.prProposed?.headBranch }} → {{ msg.prProposed?.baseBranch }} · mobitouchOS/MaIN.NET</span>
187187
</div>
188188
<div class="ic-open-btn">
189189
<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">

0 commit comments

Comments
 (0)