Clone the project files to your computer from this URL
git clone https://github.com/PSP-Autodesk3/gizmo-garage
Ensure 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; fi
Windows:
if (Get-Command pnpm -ErrorAction SilentlyContinue) { pnpm install } else { npm install }
To start the project, run the following command:
npm run dev
To start the server, either run this command in the root directory
node server/server.js
Or cd into the the server and run it from there
cd server
node server.js