- Add git-commit.js script and README instructions - Add .env.example for OpenRouter API key - Update .gitignore to ignore utils/.env - Add commit command to package.json scripts - Delete obsolete placeholder images (avif/jpeg) - Switch BaseHead.astro and Hero.astro to use avif images - Update imports to reflect new image formats
36 lines
400 B
Plaintext
36 lines
400 B
Plaintext
# build output
|
|
dist/
|
|
# generated types
|
|
.astro/
|
|
|
|
# dependencies
|
|
node_modules/
|
|
|
|
# logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
|
|
# environment variables
|
|
.env
|
|
.env.production
|
|
src/utils/.env
|
|
|
|
# macOS-specific files
|
|
.DS_Store
|
|
|
|
# jetbrains setting folder
|
|
.idea/
|
|
|
|
# wrangler files
|
|
.wrangler
|
|
.dev.vars*
|
|
!.dev.vars.example
|
|
!.env.example
|
|
|
|
.specstory/**
|
|
.specstory/
|
|
.cursorindexingignore
|