2024-06-16 23:31:33 +03:00
|
|
|
# Mancala Backend
|
2021-06-27 01:41:52 +03:00
|
|
|
|
2024-06-16 23:31:33 +03:00
|
|
|
This is the backend code for the Mancala project, written in Express.js.
|
|
|
|
|
|
|
|
|
|
## Getting Started
|
|
|
|
|
|
|
|
|
|
### Install Packages
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
yarn install
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Start in Development Mode
|
2021-06-27 01:41:52 +03:00
|
|
|
|
|
|
|
|
```bash
|
2024-06-16 23:31:33 +03:00
|
|
|
yarn dev
|
2021-06-27 01:41:52 +03:00
|
|
|
```
|
|
|
|
|
|
2024-06-16 23:31:33 +03:00
|
|
|
### Start in Release Mode
|
2021-06-27 01:41:52 +03:00
|
|
|
|
|
|
|
|
```bash
|
2024-06-16 23:31:33 +03:00
|
|
|
yarn build
|
|
|
|
|
yarn start
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Development Dependencies
|
|
|
|
|
|
|
|
|
|
This package depends on the local packages `@mancala/core` and `mancala.js`. Refer to their documentation for further instructions.
|