Clone the project files to your computer from this URL
git clone https://github.com/PSP-Autodesk3/gizmo-garageEnsure Node.js is installed on your computer. Install here
Run the following command in the terminal from both the root directory, and the server directory:
Linux:
if command -v pnpm > /dev/null 2>&1; then pnpm i; else npm i; fiWindows:
if (Get-Command pnpm -ErrorAction SilentlyContinue) { pnpm install } else { npm install }To start the project, run the following command:
npm run devTo start the server, either run this command in the root directory
node server/server.jsOr cd into the the server and run it from there
cd server
node server.js