Cruizer reservation is a vehicle service reservation system build for Cruizer Service Stations.
- Clone the repository
- Build and run backend
- Navigate to backend
cd _repository_/backend
- Install dependencies
npm install
- Setup the configrations
Database and other configurations are imported from_repository_/backend/.env
file. Create the above mentioned file with following content while replacing respective values.DB_HOST = <your_database_host> DB_CLUSTER = <your_database_cluster> DB_USER = <your_database_username> DB_PASS = <your_database_password> DB_NAME = <your_database_name> SECRET = <secrect_key_for_jwt_issuing> // eg. 'cruizer@123'
- Serve application
npm run start
- Navigate to backend