Update CLAUDE.md with system architecture and work guidelines
This commit is contained in:
parent
190794b2c1
commit
f58c85c8f0
30
CLAUDE.md
30
CLAUDE.md
@ -1,5 +1,26 @@
|
|||||||
# MYP Project Development Guidelines
|
# MYP Project Development Guidelines
|
||||||
|
|
||||||
|
## System Architecture
|
||||||
|
- **Frontend**:
|
||||||
|
- Located in `packages/reservation-platform`
|
||||||
|
- Runs on a Raspberry Pi connected to company network
|
||||||
|
- Has internet access on one interface
|
||||||
|
- Connected via LAN to an offline network
|
||||||
|
- Serves as the user interface
|
||||||
|
- Developed by another apprentice as part of IHK project work
|
||||||
|
|
||||||
|
- **Backend**:
|
||||||
|
- Located in `backend` directory
|
||||||
|
- Flask application running on a separate Raspberry Pi
|
||||||
|
- Connected only to the offline network
|
||||||
|
- Communicates with WiFi smart plugs
|
||||||
|
- Part of my IHK project work for digital networking qualification
|
||||||
|
|
||||||
|
- **Printers/Smart Plugs**:
|
||||||
|
- Printers can only be controlled (on/off) via WiFi smart plugs
|
||||||
|
- No other control mechanisms available
|
||||||
|
- Smart plugs and printers are equivalent in the system context
|
||||||
|
|
||||||
## Build/Run Commands
|
## Build/Run Commands
|
||||||
- Backend: `cd backend && source venv/bin/activate && python app.py`
|
- Backend: `cd backend && source venv/bin/activate && python app.py`
|
||||||
- Frontend: `cd packages/reservation-platform && pnpm dev`
|
- Frontend: `cd packages/reservation-platform && pnpm dev`
|
||||||
@ -22,4 +43,11 @@
|
|||||||
- Organize imports automatically with Biome
|
- Organize imports automatically with Biome
|
||||||
- Use TypeScript types for all code
|
- Use TypeScript types for all code
|
||||||
- Use React hooks for state management
|
- Use React hooks for state management
|
||||||
- Naming: camelCase for functions/variables, PascalCase for components
|
- Naming: camelCase for functions/variables, PascalCase for components
|
||||||
|
|
||||||
|
## Work Guidelines
|
||||||
|
- All changes must be committed to git
|
||||||
|
- Work efficiently and cost-effectively
|
||||||
|
- Don't repeatedly try the same solution if it doesn't work
|
||||||
|
- Create and check notes when encountering issues
|
||||||
|
- Clearly communicate if something is not possible so I can handle it manually
|
Loading…
x
Reference in New Issue
Block a user