You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit refactors the project architecture by separating the frontend from the backend API. The goal is to enable independent development, scaling, and deployment of both parts.
- Extracted the frontend into a separate directory with its own `package.json`, Vite configuration, and `index.html`.
- The backend is now a pure API service, responsible only for business logic and data.
- Added a Docker setup (`Dockerfile`, `docker-compose.yml`) to containerize the application environment.
- Configured Vite's dev server to proxy API requests (`/api`) to the backend container to ensure a smooth development experience.
0 commit comments