30 lines
519 B
Markdown
30 lines
519 B
Markdown
# Air board game
|
|
|
|
Play any board game with your friends thanks to this tabletop simulator.
|
|
|
|
You can try a version [here](https://airboardgame.netlify.app).
|
|
|
|
## Installation
|
|
|
|
You need a recent node version. You can use nvm to initialize your environment.
|
|
Then, execute
|
|
|
|
```sh
|
|
npm ci # To install dependencies
|
|
```
|
|
|
|
Configure the environement:
|
|
|
|
Copy the `.env.dist` file without the `.dist` extension and edit it.
|
|
|
|
Now you can start the server:
|
|
|
|
```sh
|
|
npm run server
|
|
```
|
|
|
|
Then you can run the client:
|
|
|
|
```sh
|
|
npm start
|
|
```
|