A monorepo project containing frontend and backend applications.
rockets-playground/
├── packages/
│ ├── frontend/ # React/Vite frontend application
│ └── backend/ # Backend application
├── docker-compose.yml
└── README.md
- Docker
- Docker Compose
- Start both services:
docker-compose up
- Start services in detached mode:
docker-compose up -d
- Access the applications:
- Frontend: http://localhost:5173
- Backend: http://localhost:3000
Each package can be run independently for development:
cd packages/frontend
yarn install
yarn dev
cd packages/backend
yarn install
yarn start
The project includes Docker configuration for both services:
packages/frontend/Dockerfile
- Frontend container configurationpackages/backend/Dockerfile
- Backend container configurationdocker-compose.yml
- Multi-container orchestration
NODE_ENV
- Development/production environmentVITE_API_URL
- Backend API URL
NODE_ENV
- Development/production environment
- Create a new branch
- Make your changes
- Submit a merge request
Active development