720 B
720 B
Gravwell-Online
Development:
Below are the steps required to run the code in development mode:
- Clone the git repository
- Go into the common code module:
cd common - Build the code for commonjs and ES module distribution with:
make - In a new terminal:
cd web-svelte - Install the required dependencies:
pnpm install- If thecommonmodule fails to import, link it withpnpm link ../common/esm - Run Vite:
pnpm dev - In a new terminal:
cd server - Install the required dependencies:
pnpm install- If thecommonmodules fails to import, link it withpnpm link ../common/cjs - Compile the server code with
tsc - Run the server code with
pnpm start