Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions code-reference-finder/.env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
OPENROUTER_API_KEY=your_openrouter_api_key
TINYFISH_API_KEY=your_tinyfish_api_key
GITHUB_TOKEN=your_github_personal_access_token
STACKEXCHANGE_KEY=your_stackexchange_api_key
# TinyFish Web Agent API key (server-side only)
# Get yours at: https://agent.tinyfish.ai/api-keys
TINYFISH_API_KEY=

# Google Gemini API key — used for code analysis and search query generation
# Get yours at: https://aistudio.google.com/apikey
GEMINI_API_KEY=
49 changes: 15 additions & 34 deletions code-reference-finder/.gitignore
Original file line number Diff line number Diff line change
@@ -1,41 +1,22 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# Dependencies
node_modules/

# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions
# Next.js
.next/
out/

# testing
/coverage
# Environment files
.env
.env.local
.env.*.local

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# env files (can opt-in for committing if needed)
.env*
# Build outputs
*.tsbuildinfo

# vercel
# Vercel
.vercel

# typescript
*.tsbuildinfo
# OS
.DS_Store
Thumbs.db
next-env.d.ts
267 changes: 149 additions & 118 deletions code-reference-finder/README.md

Large diffs are not rendered by default.

Loading