Skip to content

Commit ae4b1ef

Browse files
committed
Check
1 parent 1175811 commit ae4b1ef

17 files changed

+386
-100
lines changed
1.19 MB
Binary file not shown.

public/videos/install-homebrew.mp4

1.5 MB
Binary file not shown.

src/content/blog/vibe-coding-guide/page.mdx

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,29 @@ Quick mental checklist
197197
- Keep your .env file **out of Git** so it never lands on GitHub.
198198
- Load the variable in code with process.env.OPENAI_API_KEY (Node) or framework helpers.
199199

200+
## Install GitGuardian to Auto-Detect Leaked Secrets 🛡️
201+
202+
Before you start pushing code to GitHub, it's smart to set up a tool that will catch any secrets you accidentally commit. [GitGuardian](https://www.gitguardian.com/) scans your code for API keys and other sensitive info before it ever leaves your machine.
203+
204+
**How to install GitGuardian's CLI (`ggshield`) with Homebrew:**
205+
206+
1. Open the terminal in Cursor
207+
2. Paste and run this command:
208+
209+
```bash
210+
brew install gitguardian/tap/ggshield
211+
```
212+
213+
Below is a quick video walkthrough of the installation process:
214+
215+
<video
216+
src="/videos/git-guardian-install.mp4"
217+
controls
218+
className="w-full max-w-2xl mx-auto my-6 rounded-lg border border-zinc-200 dark:border-zinc-700/40 shadow-lg"
219+
poster="/images/vibe-coding-survival-guide.webp"
220+
aria-label="Video walkthrough: Installing GitGuardian CLI with Homebrew"
221+
/>
222+
200223
## Your First Safe Deploy — 5-Minute Walk-through 🚀
201224

202225
Follow this once, and you'll have a real-world loop you can repeat for every project.

src/content/blog/vibe-coding-mastery/page.mdx

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

src/images/cursor-rules.webp

56.5 KB
Loading

src/images/git-branches.webp

51.4 KB
Loading

src/images/git-commit.webp

78.4 KB
Loading

src/images/git-guardian-flow.webp

62 KB
Loading

src/images/git-popped.webp

120 KB
Loading

src/images/git-sharing.webp

94 KB
Loading

0 commit comments

Comments
 (0)