Skip to content

Commit 7eb6f1c

Browse files
authored
refactor: update references for org migration to CodingWithCalvin (#4)
1 parent 725d4cb commit 7eb6f1c

7 files changed

Lines changed: 19 additions & 19 deletions

File tree

CLAUDE.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -70,22 +70,22 @@ gh issue close <number>
7070

7171
```bash
7272
# List what blocks an issue
73-
gh api repos/dtvem/dtvem/issues/<number>/dependencies/blocked_by --jq '.[] | "#\(.number) \(.title)"'
73+
gh api repos/CodingWithCalvin/dtvem.cli/issues/<number>/dependencies/blocked_by --jq '.[] | "#\(.number) \(.title)"'
7474

7575
# List what an issue blocks
76-
gh api repos/dtvem/dtvem/issues/<number>/dependencies/blocking --jq '.[] | "#\(.number) \(.title)"'
76+
gh api repos/CodingWithCalvin/dtvem.cli/issues/<number>/dependencies/blocking --jq '.[] | "#\(.number) \(.title)"'
7777

7878
# Add a blocking relationship (issue <number> is blocked by <blocker_id>)
7979
# First get the blocker's numeric ID (not issue number):
80-
gh api repos/dtvem/dtvem/issues/<blocker_number> --jq '.id'
80+
gh api repos/CodingWithCalvin/dtvem.cli/issues/<blocker_number> --jq '.id'
8181
# Then add the dependency:
82-
gh api repos/dtvem/dtvem/issues/<number>/dependencies/blocked_by -X POST -F issue_id=<blocker_id>
82+
gh api repos/CodingWithCalvin/dtvem.cli/issues/<number>/dependencies/blocked_by -X POST -F issue_id=<blocker_id>
8383

8484
# Remove a blocking relationship
85-
gh api repos/dtvem/dtvem/issues/<number>/dependencies/blocked_by/<blocker_id> -X DELETE
85+
gh api repos/CodingWithCalvin/dtvem.cli/issues/<number>/dependencies/blocked_by/<blocker_id> -X DELETE
8686
```
8787

88-
**Note:** The API uses numeric issue IDs (not issue numbers) for POST/DELETE operations. Get the ID with `gh api repos/dtvem/dtvem/issues/<number> --jq '.id'`
88+
**Note:** The API uses numeric issue IDs (not issue numbers) for POST/DELETE operations. Get the ID with `gh api repos/CodingWithCalvin/dtvem.cli/issues/<number> --jq '.id'`
8989

9090
---
9191

@@ -176,9 +176,9 @@ func init() {
176176

177177
// src/main.go - blank imports trigger registration
178178
import (
179-
_ "github.com/dtvem/dtvem/src/runtimes/node"
180-
_ "github.com/dtvem/dtvem/src/runtimes/python"
181-
_ "github.com/dtvem/dtvem/src/runtimes/ruby"
179+
_ "github.com/CodingWithCalvin/dtvem.cli/src/runtimes/node"
180+
_ "github.com/CodingWithCalvin/dtvem.cli/src/runtimes/python"
181+
_ "github.com/CodingWithCalvin/dtvem.cli/src/runtimes/ruby"
182182
)
183183
```
184184

@@ -200,7 +200,7 @@ import (
200200
1. Create `src/runtimes/<name>/provider.go`
201201
2. Implement `runtime.Provider` interface (all 20 methods)
202202
3. Add `init()` function: `runtime.Register(NewProvider())`
203-
4. Import in `src/main.go`: `_ "github.com/dtvem/dtvem/src/runtimes/<name>"`
203+
4. Import in `src/main.go`: `_ "github.com/CodingWithCalvin/dtvem.cli/src/runtimes/<name>"`
204204
5. Update `schemas/runtimes.schema.json` enum
205205

206206
The shim mappings are automatically registered via `Shims()`.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# dtvem.io
22

3-
The website for [dtvem](https://github.com/dtvem/dtvem), a cross-platform runtime version manager.
3+
The website for [dtvem](https://github.com/CodingWithCalvin/dtvem.cli), a cross-platform runtime version manager.
44

55
## Tech Stack
66

website/src/components/Footer.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const currentYear = new Date().getFullYear();
33
const currentPath = Astro.url.pathname;
44
55
// Calculate GitHub edit URL based on current path
6-
const githubRepo = 'https://github.com/dtvem/dtvem.io';
6+
const githubRepo = 'https://github.com/CodingWithCalvin/dtvem.io';
77
let editUrl = '';
88
99
if (currentPath === '/' || currentPath === '') {
@@ -30,11 +30,11 @@ const footerLinks = {
3030
{ href: '/docs/user-guide/migration', label: 'Migration Guide' },
3131
],
3232
community: [
33-
{ href: 'https://github.com/dtvem/dtvem/discussions', label: 'Discussions' },
34-
{ href: 'https://github.com/dtvem/dtvem/issues', label: 'Issues' },
33+
{ href: 'https://github.com/CodingWithCalvin/dtvem.cli/discussions', label: 'Discussions' },
34+
{ href: 'https://github.com/CodingWithCalvin/dtvem.cli/issues', label: 'Issues' },
3535
],
3636
social: [
37-
{ href: 'https://github.com/dtvem/dtvem', label: 'GitHub', icon: 'github' },
37+
{ href: 'https://github.com/CodingWithCalvin/dtvem.cli', label: 'GitHub', icon: 'github' },
3838
{ href: 'https://twitter.com/dtvemio', label: 'Twitter', icon: 'twitter' },
3939
{ href: 'https://bsky.app/profile/dtvem.io', label: 'Bluesky', icon: 'bluesky' },
4040
],

website/src/content/docs/user-guide/commands/version.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Compare your version with the latest release:
3737
> dtvem version
3838
dtvem 1.0.0
3939

40-
# Check latest at https://github.com/dtvem/dtvem/releases
40+
# Check latest at https://github.com/CodingWithCalvin/dtvem.cli/releases
4141
```
4242

4343
### Bug Reports

website/src/content/docs/user-guide/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ curl -fsSL dtvem.io/install.sh | bash
5151

5252
## Manual Installation
5353

54-
1. Download the latest release from [GitHub Releases](https://github.com/dtvem/dtvem/releases)
54+
1. Download the latest release from [GitHub Releases](https://github.com/CodingWithCalvin/dtvem.cli/releases)
5555
2. Extract the archive (contains `dtvem` and `dtvem-shim`)
5656
3. Move both binaries to a directory in your PATH (e.g., `/usr/local/bin`)
5757
4. Run `dtvem init` to configure your shell, then restart your terminal

website/src/content/docs/user-guide/runtimes/coming-soon.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ These runtimes are planned for future dtvem releases.
7474

7575
## Request a Runtime
7676

77-
Want support for a runtime not listed here? [Open an issue](https://github.com/dtvem/dtvem/issues) on GitHub to request it.
77+
Want support for a runtime not listed here? [Open an issue](https://github.com/CodingWithCalvin/dtvem.cli/issues) on GitHub to request it.
7878

7979
<hr class="my-8 border-primary-400" />
8080

website/src/pages/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ const runtimes = [
150150
<a href="/docs/user-guide/getting-started" class="btn-primary">
151151
Get Started
152152
</a>
153-
<a href="https://github.com/dtvem/dtvem" target="_blank" rel="noopener noreferrer" class="btn-secondary">
153+
<a href="https://github.com/CodingWithCalvin/dtvem.cli" target="_blank" rel="noopener noreferrer" class="btn-secondary">
154154
View on GitHub
155155
</a>
156156
</div>

0 commit comments

Comments
 (0)