Club website to provide info and allow members to place 3D printing orders.
-
Front-end: Next.js + TypeScript + Tailwind CSS
-
Back-end: Express.js
-
Database: MongoDB
- Clone the repo
git clone https://github.com/3DWestern/3DW-Website.git && cd 3DW-Website/
- Install dependencies
cd Client && npm installcd ../Server && npm install
- Configure environment variables in
Server/.env(see:example.env)- Port for the backend to run on
- Atlas URI
- Database name
- Run the front-end and back-end
cd Server && npm run devcd ../Client && npm run dev