28 lines
562 B
Markdown
28 lines
562 B
Markdown
# SerpentRace
|
|
|
|
- Frontend: React (Vite)
|
|
- Backend: Node.js (Express.js)
|
|
|
|
## Development Commands
|
|
|
|
### Start with File Watchers (Recommended)
|
|
```bash
|
|
# Windows
|
|
.\docker-manage.bat dev:watch
|
|
|
|
# Linux/Mac
|
|
./docker-manage.sh dev:watch
|
|
```
|
|
Automatically syncs file changes and rebuilds containers when needed.
|
|
|
|
### Traditional Start
|
|
```bash
|
|
# Windows
|
|
.\docker-manage.bat dev:start
|
|
|
|
# Linux/Mac
|
|
./docker-manage.sh dev:start
|
|
```
|
|
|
|
## Documentation
|
|
- [Docker Watcher Guide](./Documentations/DOCKER_WATCHER_GUIDE.md) - Comprehensive guide for file watching functionality |