Files
motovaultpro/backend/CLAUDE.md
Eric Gullickson 87ee498af7 chore: update docs
2026-02-05 21:49:35 -06:00

20 lines
818 B
Markdown

# backend/
## Files
| File | What | When to read |
| ---- | ---- | ------------ |
| `README.md` | Backend quickstart and commands | Getting started with backend development |
| `package.json` | Dependencies and npm scripts | Adding dependencies, understanding build |
| `tsconfig.json` | TypeScript configuration | Compiler settings, path aliases |
| `eslint.config.js` | ESLint configuration | Linting rules, code style |
| `jest.config.js` | Jest test configuration | Test setup, coverage settings |
| `Dockerfile` | Container build definition | Docker builds, deployment |
## Subdirectories
| Directory | What | When to read |
| --------- | ---- | ------------ |
| `src/` | Application source code | Any backend development |
| `scripts/` | Utility scripts (docker-entrypoint) | Container startup, automation |