27 lines
538 B
Markdown
27 lines
538 B
Markdown
# Mancala Frontend
|
|
|
|
The web user interface for the Mancala project, written in React.
|
|
|
|
## Getting Started
|
|
|
|
### Install Packages
|
|
|
|
```bash
|
|
yarn install
|
|
```
|
|
|
|
### Start in Development Mode
|
|
|
|
```bash
|
|
yarn dev
|
|
```
|
|
|
|
### 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=http://localhost:5000 -t mancala-frontend .
|
|
``` |