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
|
|
|
|
|
|
2024-12-08 22:47:02 +03:00
|
|
|
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 .
|
|
|
|
|
```
|