No description
Find a file
2022-03-07 00:00:33 -06:00
common Add a makefile to build both ESM and CJS 2022-03-06 23:06:18 -06:00
docs Add players.update event documentation 2022-01-06 16:26:58 -07:00
server Begin work on the Game class 2022-01-09 01:21:00 -06:00
web-svelte import format to be consistent 2022-03-07 00:00:10 -06:00
.gitignore Add the cjs and ems module builds to the gitignore 2022-03-07 00:00:33 -06:00
README.md Add some steps on how to start a dev environment 2022-01-03 22:02:37 -07:00

Gravwell-Online

Development:

Below are the steps required to run the code in development mode:

  1. Clone the git repository
  2. Go into the common code module: cd common
  3. Tell the Typescript compiler to watch for all updates in the module using: tsc --watch
  4. In a new terminal: cd web-svelte
  5. Install the required dependencies: pnpm install
  6. Run Vite: pnpm dev