Files
healthy-fit/.gitignore
Carlos Escalante bd91eb4171 Migrate frontend to TypeScript and extend user profile
Converted frontend codebase from JavaScript to TypeScript, including pages, components, and context. Added new layout and UI kit components. Updated backend user model and schemas to support profile fields (firstname, lastname, age, gender, height, weight, unit_preference) and added endpoints for reading/updating current user. Introduced food log listing endpoint and migration script for user table. Updated dependencies and build configs for TypeScript and Tailwind v4.
2026-01-18 19:01:00 -06:00

40 lines
380 B
Plaintext

# System files
.DS_Store
Thumbs.db
# Environment Variables
.env
.env.*
!.env.example
# Python
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
env/
venv/
.venv/
*.egg-info/
.coverage
htmlcov/
.pytest_cache/
# Node / Frontend
node_modules/
npm-debug.log
yarn-error.log
.npm-cache/
dist/
build/
.output/
frontend/catalyst-ui-kit 2/
# Docker
postgres_data/
# IDE settings
.vscode/
.idea/