{"id":21404951,"url":"https://github.com/perkzen/reservation-system-endava","last_synced_at":"2026-04-02T02:50:48.577Z","repository":{"id":38195311,"uuid":"490427232","full_name":"perkzen/reservation-system-endava","owner":"perkzen","description":"This is a workspace reservation web application for company Endava.","archived":false,"fork":false,"pushed_at":"2022-10-24T05:36:32.000Z","size":11887,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-23T03:41:34.557Z","etag":null,"topics":["firebase","mongodb","nest","nodejs","react","redux","typescript"],"latest_commit_sha":null,"homepage":"https://workspace-reservation-endava.herokuapp.com/sign-in","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/perkzen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-05-09T20:01:22.000Z","updated_at":"2022-06-23T14:04:36.000Z","dependencies_parsed_at":"2023-01-19T18:19:07.111Z","dependency_job_id":null,"html_url":"https://github.com/perkzen/reservation-system-endava","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/perkzen%2Freservation-system-endava","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/perkzen%2Freservation-system-endava/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/perkzen%2Freservation-system-endava/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/perkzen%2Freservation-system-endava/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/perkzen","download_url":"https://codeload.github.com/perkzen/reservation-system-endava/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243902290,"owners_count":20366259,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["firebase","mongodb","nest","nodejs","react","redux","typescript"],"created_at":"2024-11-22T16:19:41.752Z","updated_at":"2025-12-30T21:05:00.007Z","avatar_url":"https://github.com/perkzen.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\u003cimg style=\"display: block;margin-left: auto;margin-right: auto;\" src=\"https://user-images.githubusercontent.com/78727019/168024641-ef9488f8-f094-4b52-85b4-d2cbf7e68d5d.png\" width=\"146.5\" height=\"50\"\u003e\n\u003c/p\u003e\n\n# Workspace reservation system\nThis is a workspace reservation web application for company Endava. Where you can dynamically choose your workspace or reserve it for a few days in advance. It's simple and easy to use. Save time and optimize workflow with our app. \n\nApplication is available at: [Workspace reservation system](https://workspace-reservation-endava.herokuapp.com/sign-in)\u003cbr/\u003e\nNote: This may not be the final version.\n\n## Getting started with Docker\nFirst you need to have Docker Engine and Docker Compose installed on your computer. Then go to the root directory of the application where `docker-compose.yml` is located and open command line. Write the following command which will build and run our application.\n```\ndocker-compose up\n```\nAfter that just enter `http://localhost:3000` in a browser to see the application running.\n\nThe API documentaion is available at `http://localhost:8000/swagger`.\n\n## Getting started without Docker\nFirst you need to install all necessary packages on the frontend and backend:\n```\ncd frontend\nnpm i\n\ncd backend\nnpm i\n```\nAfter that create a `.env` file in the frontend folder, it should look something like this.\n```env\nREACT_APP_BE_BASE_URL=http://localhost:8000/api/\nREACT_APP_API_VERSION=v1\nREACT_APP_FIREBASE_API_KEY=\u003capi-key\u003e\nREACT_APP_FIREBASE_AUTH_DOMAIN=reservation-system-endava.firebaseapp.com\nREACT_APP_FIREBASE_PROJECT_ID=reservation-system-endava\nREACT_APP_FIREBASE_STORAGE_BUCKET=reservation-system-endava.appspot.com\nREACT_APP_FIREBASE_MESSAGING_SENDER_ID=\u003cmessaging-sender-id\u003e\nREACT_APP_FIREBASE_APP_ID=\u003cfirebase-app-id\u003e\nREACT_APP_FIREBASE_MEASUREMENT_ID=\u003cmeasurement-id\u003e\n```\nAfter that create a `.env` file in the backend folder, it should look something like this.\n```env\n DATABASE_URI=mongodb+srv://\u003cusername\u003e:\u003cpassword\u003e@cluster0.g1ftw.mongodb.net/myFirstDatabase?retryWrites=true\u0026w=majority\n PORT=8000\n```\n\nIn backend you will also need to create a file `firebase-service-account.json` and fill in this information.\n```json\n{\n  \"type\": \"service_account\",\n  \"project_id\": \"\",\n  \"private_key_id\": \"\",\n  \"private_key\": \"\",\n  \"client_email\": \"\",\n  \"client_id\": \"\",\n  \"auth_uri\": \"\",\n  \"token_uri\": \"\",\n  \"auth_provider_x509_cert_url\": \"\",\n  \"client_x509_cert_url\": \"\"\n}\n\n```\nNote: if backend won't start and the console shows: \"0 errors and crashed with the Error: Cannot find module './*'\", delete .dist and .node_module folders. Then run npm i and npm rebuild.\n\nTo start the application you need to run the frontend and backend server with the following commands.\n```\ncd frontend\nnpm start\n\ncd backend\nnpm run start\n```\nNote: if you are using Windows you shouldn't define »NODE_ENV« in package.json, so instead of having \"start:dev\": \"NODE_ENV=development nest start --watch \" you should only have \"start:dev\": \" nest start --watch \" both on frontend and backend package.json files.!\n\n## Project details\nNodeJS version: 17.7.2 \u003cbr/\u003e\nReactJS version: 18.1.0 \u003cbr/\u003e\nTypescript version: 4.6.4 \u003cbr/\u003e\nNestJS version: 8.0.0 \u003cbr/\u003e\n### Important frontend packages\n- redux\n- redux-saga\n- redux-toolkit\n- react-router\n- tailwindcss\n- typescript\n- react-hook-form\n- uuid\n- axios\n- i18next\n### Important backend packages\n- nestjs\n- mongoose\n- typescript\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fperkzen%2Freservation-system-endava","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fperkzen%2Freservation-system-endava","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fperkzen%2Freservation-system-endava/lists"}