No description
Find a file
2022-01-04 20:31:14 -07:00
common Reorder export to make the heirarchy more clear 2022-01-04 20:31:14 -07:00
server Create a super primitive websocket server 2022-01-04 20:30:11 -07:00
web-svelte Adjust the focus style for the buttons 2022-01-04 12:31:24 -07:00
.gitignore Add Svelte/Vite stuff to the gitignore 2021-12-15 00:15:42 -06:00
cards.json Add a JSON file representing ever card we need 2021-12-17 01:46:11 -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