chore: migrate module path from git.t-juice.club to code.t-juice.club
Update Go module path and all import references for Gitea to Forgejo host migration. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
44
README.md
44
README.md
@@ -59,25 +59,25 @@ Search and query NixOS configuration options. **Note**: Prefer using `nixpkgs-se
|
||||
|
||||
```bash
|
||||
# Build the packages
|
||||
nix build git+https://git.t-juice.club/torjus/labmcp#nixpkgs-search
|
||||
nix build git+https://git.t-juice.club/torjus/labmcp#hm-options
|
||||
nix build git+https://git.t-juice.club/torjus/labmcp#lab-monitoring
|
||||
nix build git+https://git.t-juice.club/torjus/labmcp#git-explorer
|
||||
nix build git+https://code.t-juice.club/torjus/labmcp#nixpkgs-search
|
||||
nix build git+https://code.t-juice.club/torjus/labmcp#hm-options
|
||||
nix build git+https://code.t-juice.club/torjus/labmcp#lab-monitoring
|
||||
nix build git+https://code.t-juice.club/torjus/labmcp#git-explorer
|
||||
|
||||
# Or run directly
|
||||
nix run git+https://git.t-juice.club/torjus/labmcp#nixpkgs-search -- --help
|
||||
nix run git+https://git.t-juice.club/torjus/labmcp#hm-options -- --help
|
||||
nix run git+https://git.t-juice.club/torjus/labmcp#lab-monitoring -- --help
|
||||
nix run git+https://git.t-juice.club/torjus/labmcp#git-explorer -- --help
|
||||
nix run git+https://code.t-juice.club/torjus/labmcp#nixpkgs-search -- --help
|
||||
nix run git+https://code.t-juice.club/torjus/labmcp#hm-options -- --help
|
||||
nix run git+https://code.t-juice.club/torjus/labmcp#lab-monitoring -- --help
|
||||
nix run git+https://code.t-juice.club/torjus/labmcp#git-explorer -- --help
|
||||
```
|
||||
|
||||
### From Source
|
||||
|
||||
```bash
|
||||
go install git.t-juice.club/torjus/labmcp/cmd/nixpkgs-search@latest
|
||||
go install git.t-juice.club/torjus/labmcp/cmd/hm-options@latest
|
||||
go install git.t-juice.club/torjus/labmcp/cmd/lab-monitoring@latest
|
||||
go install git.t-juice.club/torjus/labmcp/cmd/git-explorer@latest
|
||||
go install code.t-juice.club/torjus/labmcp/cmd/nixpkgs-search@latest
|
||||
go install code.t-juice.club/torjus/labmcp/cmd/hm-options@latest
|
||||
go install code.t-juice.club/torjus/labmcp/cmd/lab-monitoring@latest
|
||||
go install code.t-juice.club/torjus/labmcp/cmd/git-explorer@latest
|
||||
```
|
||||
|
||||
## Usage
|
||||
@@ -139,28 +139,28 @@ Alternatively, if you have Nix installed, you can use the flake directly without
|
||||
"mcpServers": {
|
||||
"nixpkgs-options": {
|
||||
"command": "nix",
|
||||
"args": ["run", "git+https://git.t-juice.club/torjus/labmcp#nixpkgs-search", "--", "options", "serve"],
|
||||
"args": ["run", "git+https://code.t-juice.club/torjus/labmcp#nixpkgs-search", "--", "options", "serve"],
|
||||
"env": {
|
||||
"NIXPKGS_SEARCH_DATABASE": "sqlite:///path/to/nixpkgs-search.db"
|
||||
}
|
||||
},
|
||||
"nixpkgs-packages": {
|
||||
"command": "nix",
|
||||
"args": ["run", "git+https://git.t-juice.club/torjus/labmcp#nixpkgs-search", "--", "packages", "serve"],
|
||||
"args": ["run", "git+https://code.t-juice.club/torjus/labmcp#nixpkgs-search", "--", "packages", "serve"],
|
||||
"env": {
|
||||
"NIXPKGS_SEARCH_DATABASE": "sqlite:///path/to/nixpkgs-search.db"
|
||||
}
|
||||
},
|
||||
"hm-options": {
|
||||
"command": "nix",
|
||||
"args": ["run", "git+https://git.t-juice.club/torjus/labmcp#hm-options", "--", "serve"],
|
||||
"args": ["run", "git+https://code.t-juice.club/torjus/labmcp#hm-options", "--", "serve"],
|
||||
"env": {
|
||||
"HM_OPTIONS_DATABASE": "sqlite:///path/to/hm-options.db"
|
||||
}
|
||||
},
|
||||
"lab-monitoring": {
|
||||
"command": "nix",
|
||||
"args": ["run", "git+https://git.t-juice.club/torjus/labmcp#lab-monitoring", "--", "serve"],
|
||||
"args": ["run", "git+https://code.t-juice.club/torjus/labmcp#lab-monitoring", "--", "serve"],
|
||||
"env": {
|
||||
"PROMETHEUS_URL": "http://prometheus.example.com:9090",
|
||||
"ALERTMANAGER_URL": "http://alertmanager.example.com:9093",
|
||||
@@ -169,7 +169,7 @@ Alternatively, if you have Nix installed, you can use the flake directly without
|
||||
},
|
||||
"git-explorer": {
|
||||
"command": "nix",
|
||||
"args": ["run", "git+https://git.t-juice.club/torjus/labmcp#git-explorer", "--", "serve"],
|
||||
"args": ["run", "git+https://code.t-juice.club/torjus/labmcp#git-explorer", "--", "serve"],
|
||||
"env": {
|
||||
"GIT_REPO_PATH": "/path/to/your/repo"
|
||||
}
|
||||
@@ -443,7 +443,7 @@ The `nixpkgs-search` module runs two separate MCP servers (options and packages)
|
||||
|
||||
```nix
|
||||
{
|
||||
inputs.labmcp.url = "git+https://git.t-juice.club/torjus/labmcp";
|
||||
inputs.labmcp.url = "git+https://code.t-juice.club/torjus/labmcp";
|
||||
|
||||
outputs = { self, nixpkgs, labmcp }: {
|
||||
nixosConfigurations.myhost = nixpkgs.lib.nixosSystem {
|
||||
@@ -480,7 +480,7 @@ The `nixpkgs-search` module runs two separate MCP servers (options and packages)
|
||||
|
||||
```nix
|
||||
{
|
||||
inputs.labmcp.url = "git+https://git.t-juice.club/torjus/labmcp";
|
||||
inputs.labmcp.url = "git+https://code.t-juice.club/torjus/labmcp";
|
||||
|
||||
outputs = { self, nixpkgs, labmcp }: {
|
||||
nixosConfigurations.myhost = nixpkgs.lib.nixosSystem {
|
||||
@@ -503,7 +503,7 @@ The `nixpkgs-search` module runs two separate MCP servers (options and packages)
|
||||
|
||||
```nix
|
||||
{
|
||||
inputs.labmcp.url = "git+https://git.t-juice.club/torjus/labmcp";
|
||||
inputs.labmcp.url = "git+https://code.t-juice.club/torjus/labmcp";
|
||||
|
||||
outputs = { self, nixpkgs, labmcp }: {
|
||||
nixosConfigurations.myhost = nixpkgs.lib.nixosSystem {
|
||||
@@ -528,7 +528,7 @@ The `nixpkgs-search` module runs two separate MCP servers (options and packages)
|
||||
|
||||
```nix
|
||||
{
|
||||
inputs.labmcp.url = "git+https://git.t-juice.club/torjus/labmcp";
|
||||
inputs.labmcp.url = "git+https://code.t-juice.club/torjus/labmcp";
|
||||
|
||||
outputs = { self, nixpkgs, labmcp }: {
|
||||
nixosConfigurations.myhost = nixpkgs.lib.nixosSystem {
|
||||
@@ -551,7 +551,7 @@ The `nixpkgs-search` module runs two separate MCP servers (options and packages)
|
||||
|
||||
```nix
|
||||
{
|
||||
inputs.labmcp.url = "git+https://git.t-juice.club/torjus/labmcp";
|
||||
inputs.labmcp.url = "git+https://code.t-juice.club/torjus/labmcp";
|
||||
|
||||
outputs = { self, nixpkgs, labmcp }: {
|
||||
nixosConfigurations.myhost = nixpkgs.lib.nixosSystem {
|
||||
|
||||
Reference in New Issue
Block a user