2022-07-06 00:15:37 +00:00
|
|
|
# Bored Game
|
2022-01-28 05:27:12 +00:00
|
|
|
|
2022-07-06 00:15:37 +00:00
|
|
|
Feeling bored?
|
2022-01-28 05:27:12 +00:00
|
|
|
|
2022-07-06 00:15:37 +00:00
|
|
|
How about a board game?
|
2022-01-28 05:27:12 +00:00
|
|
|
|
2022-07-06 00:15:37 +00:00
|
|
|
Use this app to search for a board game to play because you are bored apparently.
|
2022-01-28 05:27:12 +00:00
|
|
|
|
|
|
|
|
## Developing
|
|
|
|
|
|
2022-07-06 00:15:37 +00:00
|
|
|
Once you've checked out the project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
|
2022-01-28 05:27:12 +00:00
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
npm run dev
|
|
|
|
|
|
|
|
|
|
# or start the server and open the app in a new browser tab
|
|
|
|
|
npm run dev -- --open
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
2022-07-06 00:15:37 +00:00
|
|
|
Building for production?
|
|
|
|
|
|
|
|
|
|
Great! Run:
|
2022-01-28 05:27:12 +00:00
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
npm run build
|
|
|
|
|
```
|
|
|
|
|
|
2022-07-06 00:15:37 +00:00
|
|
|
> You can preview the built app with `npm run preview`. This should _not_ be used to serve your app in production.
|