Skip to content

Latest commit

 

History

History
50 lines (31 loc) · 722 Bytes

File metadata and controls

50 lines (31 loc) · 722 Bytes

an example client implementation of the selfhosted api trader game

TODO refactor

Setup

This project uses pnpm as the package manager.

If you do not have pnpm installed, you can install it with npm:

npm i -g pnpm

Make sure to install the dependencies:

pnpm i

Development Server

Start the development server on http://localhost:3000:

pnpm dev

Production

Build the application for production:

pnpm build

Locally preview production build:

pnpm preview

Generate static pages:

pnpm generate

Check out the deployment documentation for more information.