mancala/apps/frontend/README.md

27 lines
536 B
Markdown
Raw Normal View History

2024-06-16 23:31:33 +03:00
# Mancala Frontend
2024-03-24 03:13:40 +03:00
2024-06-16 23:31:33 +03:00
The web user interface for the Mancala project, written in React.
## Getting Started
### Install Packages
```bash
yarn install
```
### Start in Development Mode
2024-03-24 03:13:40 +03:00
```bash
yarn dev
2024-06-16 23:31:33 +03:00
```
### Development Dependencies
This package depends on the local packages `@mancala/core` and `mancala.js`. Refer to their documentation for further instructions.
### Docker Build
```bash
docker build --build-arg SERVER_ADDRESS=http://localhost:5000 --build-arg WS_SERVER_ADDRESS=ws://localhost:5000 -t mancala-frontend .
```