Space-saver is an application developed by Nicklas Di Pietro, Zini Wang, and Robel Hailu as part of the CodeDay Labs summer internship. The application allows users to sign up and reserve spaces from businesses that collaborate with the platform.
- User Authenticaiton
- Space Booking
- User Management
- Backend: NestJS
- Frontend: React, TypeScript
- Node.js
- npm
- Docker (optional)
cd backend
npm install
cd frontend
npm install
npm run start:dev
npm run start
if you prefer using docker, you can run, and stop the containers in your terminal in the root directory of the Space-saver project:
docker-compose -f docker-compose.dev.yml build // not needed: building docker containers done in scripts
docker-compose -f docker-compose.dev.yml up // running docker containers
docker-compose -f docker-compose.dev.yml down // stopping docker containers