Skip to content

Commit 7563a50

Browse files
fix: rename
1 parent a39fa90 commit 7563a50

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

bun.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"lockfileVersion": 1,
33
"workspaces": {
44
"": {
5-
"name": "starlight-nix-template",
5+
"name": "typescript-nix-template",
66
"devDependencies": {
77
"@semantic-release/changelog": "^6.0.3",
88
"@semantic-release/git": "^10.0.1",

docs/notes/build/rolldown-workers-incompatibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Rolldown's bundler generates runtime code that uses Node.js's `createRequire(imp
1515

1616
### Error
1717
```
18-
✘ [ERROR] service core:user:starlight-nix-template: Uncaught TypeError:
18+
✘ [ERROR] service core:user:typescript-nix-template: Uncaught TypeError:
1919
The argument 'path' must be a file URL object, a file URL string, or an absolute path string.
2020
Received 'undefined'
2121

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ sops-add-key:
454454
chmod 600 ~/.config/sops/age/keys.txt
455455

456456
# Prompt for key description
457-
printf "Enter age key description (e.g., 'starlight-nix-template [dev|ci]'): "
457+
printf "Enter age key description (e.g., 'typescript-nix-template [dev|ci]'): "
458458
read -r key_description
459459
[[ -z "${key_description}" ]] && { echo "❌ Description cannot be empty"; exit 1; }
460460

nix/modules/devshell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
{
1515
devShells = {
1616
default = pkgs.mkShell {
17-
name = "starlight-nix-template-dev";
17+
name = "typescript-nix-template-dev";
1818
inputsFrom = [ config.pre-commit.devShell ];
1919
packages = with pkgs; [
2020
# Core development tools

packages/docs/src/content/docs/guides/secrets-management.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,15 +323,15 @@ If CI needs SSH access (e.g., to push commits as bot user):
323323

324324
```bash
325325
# Generate SSH key
326-
ssh-keygen -t ed25519 -f /tmp/ci-bot -N "" -C "ci-bot@starlight-nix-template"
326+
ssh-keygen -t ed25519 -f /tmp/ci-bot -N "" -C "ci-bot@typescript-nix-template"
327327

328328
# Derive age key
329329
ssh-to-age < /tmp/ci-bot.pub
330330
# Output: age1abc...xyz
331331

332332
# Add to .sops.yaml as ci key
333333

334-
# Save SSH private key to Bitwarden as "starlight-nix-template CI SSH key"
334+
# Save SSH private key to Bitwarden as "typescript-nix-template CI SSH key"
335335

336336
# For SOPS, derive age private key
337337
ssh-to-age -private-key -i /tmp/ci-bot
@@ -382,7 +382,7 @@ mkdir ~/.sops-shared
382382
cd ~/.sops-shared
383383

384384
# Copy .sops.yaml and create shared.yaml
385-
cp ~/projects/starlight-nix-template/.sops.yaml .
385+
cp ~/projects/typescript-nix-template/.sops.yaml .
386386
sops shared.yaml
387387

388388
# Upload to multiple repos

scripts/sops-bootstrap.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ if [ "$METHOD" = "ssh" ]; then
3434
KEY_FILE=$(mktemp)
3535
trap "rm -f $KEY_FILE ${KEY_FILE}.pub" EXIT
3636

37-
ssh-keygen -t ed25519 -f "$KEY_FILE" -N "" -C "${ROLE}@starlight-nix-template"
37+
ssh-keygen -t ed25519 -f "$KEY_FILE" -N "" -C "${ROLE}@typescript-nix-template"
3838
PUBLIC_KEY=$(ssh-to-age < "${KEY_FILE}.pub")
3939
PRIVATE_KEY=$(cat "$KEY_FILE")
4040
PRIVATE_AGE_KEY=$(ssh-to-age -private-key -i "$KEY_FILE")
@@ -171,7 +171,7 @@ if [ "$ROLE" = "dev" ]; then
171171
echo " Option 2: Manual installation"
172172
echo " mkdir -p ~/.config/sops/age"
173173
echo " cat >> ~/.config/sops/age/keys.txt << KEYEOF"
174-
echo " # starlight-nix-template dev key"
174+
echo " # typescript-nix-template dev key"
175175
echo " # public key: ${PUBLIC_KEY}"
176176
echo " ${PRIVATE_KEY}"
177177
echo " KEYEOF"

vars/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ After encrypting `shared.yaml`, upload the CI_AGE_KEY to GitHub:
7171
gh secret set SOPS_AGE_KEY < <(sops --decrypt --extract '["CI_AGE_KEY"]' vars/shared.yaml)
7272
```
7373

74-
Or manually at: https://github.com/YOUR_USERNAME/starlight-nix-template/settings/secrets/actions
74+
Or manually at: https://github.com/YOUR_USERNAME/typescript-nix-template/settings/secrets/actions
7575

7676
## Security Notes
7777

0 commit comments

Comments
 (0)