Skip to content
Draft
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
7 changes: 6 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,9 @@ NODE_ENV=development
NEXT_PUBLIC_API_URL=http://localhost:8000

# Backend Configuration
# Add any additional backend-specific environment variables here
DATABASE_URL=postgresql+psycopg://recipe_user:recipe_password@localhost:5432/recipe_db

# JWT Authentication
JWT_SECRET_KEY=your-secret-key-here-change-in-production-min-32-chars-long
JWT_ALGORITHM=HS256
JWT_ACCESS_TOKEN_EXPIRE_MINUTES=30
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,12 @@ logs/
Thumbs.db
.Spotlight-V100
.Trashes

# User uploads (runtime data, not source code)
backend/uploads/

# Temporary development files
*.backup
*.bak
fix_*.py
update_*.py
Loading