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
1 change: 1 addition & 0 deletions markdown-qa/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/

Copilot AI Feb 14, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Only node_modules/ is ignored. Since the app expects the Gemini API key via environment variables, it’s likely people will create a markdown-qa/.env (or similar) during local setup; adding .env (and optionally *.local, logs) to this .gitignore helps prevent accidental commits of secrets.

Suggested change
node_modules/
node_modules/
# Environment files (may contain secrets like API keys)
.env
.env.*
# Local configuration overrides
*.local
# Logs
*.log

Copilot uses AI. Check for mistakes.
9 changes: 9 additions & 0 deletions markdown-qa/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"port": 3000,
"repoRoot": "..",
"cli": {
"command": "claude",
"args": ["--print", "--verbose"],
"env": {}
}
}
Loading