Skip to content

Commit 2382030

Browse files
abdoutclaude
andcommitted
refactor: rename setup-secrets to secrets
- setup-secrets.sh → secrets.sh - setup-secrets.ps1 → secrets.ps1 - team-secrets.json → secrets.json (gist) - Updated all documentation references Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent ce38fb6 commit 2382030

223 files changed

Lines changed: 11840 additions & 188 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Setup secrets from private GitHub gist (Windows PowerShell)
2-
# Usage: & "$env:USERPROFILE\.claude\scripts\setup-secrets.ps1" -GistId "<GIST_ID>"
3-
# Or: irm https://raw.githubusercontent.com/databayt/codebase/main/.claude/scripts/setup-secrets.ps1 | iex; Setup-Secrets -GistId "<GIST_ID>"
2+
# Usage: & "$env:USERPROFILE\.claude\scripts\secrets.ps1" -GistId "<GIST_ID>"
3+
# Or: irm https://raw.githubusercontent.com/databayt/codebase/main/.claude/scripts/secrets.ps1 | iex
44

55
param(
66
[Parameter(Mandatory=$false)]
@@ -20,7 +20,7 @@ if (-not $GistId) {
2020
Write-Host "Error: Gist ID required" -ForegroundColor Red
2121
Write-Host ""
2222
Write-Host "Usage:"
23-
Write-Host " .\setup-secrets.ps1 -GistId <GIST_ID>"
23+
Write-Host " .\secrets.ps1 -GistId <GIST_ID>"
2424
Write-Host ""
2525
Write-Host "Get the Gist ID from your team lead."
2626
exit 1
@@ -50,7 +50,7 @@ Write-Host "Writing environment file..." -ForegroundColor Yellow
5050

5151
$EnvContent = @"
5252
# Claude Code Environment Variables
53-
# Auto-generated by setup-secrets.ps1
53+
# Auto-generated by secrets.ps1
5454
# DO NOT COMMIT THIS FILE
5555
5656
"@
@@ -145,5 +145,5 @@ Write-Host "Then run 'claude' to start."
145145
# Function for one-liner install
146146
function Setup-Secrets {
147147
param([string]$GistId)
148-
& "$env:USERPROFILE\.claude\scripts\setup-secrets.ps1" -GistId $GistId
148+
& "$env:USERPROFILE\.claude\scripts\secrets.ps1" -GistId $GistId
149149
}
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# Setup secrets from private GitHub gist
3-
# Usage: curl -fsSL https://raw.githubusercontent.com/databayt/codebase/main/.claude/scripts/setup-secrets.sh | bash -s -- <GIST_ID>
3+
# Usage: curl -fsSL https://raw.githubusercontent.com/databayt/codebase/main/.claude/scripts/secrets.sh | bash -s -- <GIST_ID>
44

55
set -e
66

@@ -23,10 +23,10 @@ if [ -z "$GIST_ID" ]; then
2323
echo -e "${RED}Error: Gist ID required${NC}"
2424
echo ""
2525
echo "Usage:"
26-
echo " ~/.claude/scripts/setup-secrets.sh <GIST_ID>"
26+
echo " ~/.claude/scripts/secrets.sh <GIST_ID>"
2727
echo ""
2828
echo "Or with curl:"
29-
echo " curl -fsSL https://raw.githubusercontent.com/databayt/codebase/main/.claude/scripts/setup-secrets.sh | bash -s -- <GIST_ID>"
29+
echo " curl -fsSL https://raw.githubusercontent.com/databayt/codebase/main/.claude/scripts/secrets.sh | bash -s -- <GIST_ID>"
3030
echo ""
3131
echo "Get the Gist ID from your team lead."
3232
exit 1
@@ -60,7 +60,7 @@ echo -e "${YELLOW}Writing environment file...${NC}"
6060
# Create .env file
6161
cat > "$ENV_FILE" << 'HEADER'
6262
# Claude Code Environment Variables
63-
# Auto-generated by setup-secrets.sh
63+
# Auto-generated by secrets.sh
6464
# DO NOT COMMIT THIS FILE
6565
6666
HEADER

.claude/settings.local.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,19 @@
3232
],
3333
"deny": [],
3434
"ask": []
35-
}
35+
},
36+
"enabledMcpjsonServers": [
37+
"browser",
38+
"vercel",
39+
"sentry",
40+
"figma",
41+
"linear",
42+
"notion",
43+
"stripe",
44+
"postgres-dev",
45+
"airtable",
46+
"clickup",
47+
"shadcn"
48+
],
49+
"enableAllProjectMcpServers": true
3650
}

.source/index.ts

Lines changed: 17 additions & 17 deletions
Large diffs are not rendered by default.

REF615/Final_Reports/H01.docx

204 KB
Binary file not shown.

REF615/Final_Reports/H02.docx

204 KB
Binary file not shown.

REF615/Final_Reports/H03.docx

204 KB
Binary file not shown.

REF615/Final_Reports/H04.docx

204 KB
Binary file not shown.

REF615/Final_Reports/H06.docx

203 KB
Binary file not shown.

REF615/Final_Reports/H08.docx

204 KB
Binary file not shown.

0 commit comments

Comments
 (0)