# coworking-app Entity: users, offices, spaces, seats, reservations Endpoints: GET /offices - возвращает массив офисов - [{id: uuid, city:minsk, addres: fabriciusa, role: main-office}, {id: uuid, city:kyiv, addres: kirylivska, role: main-office}] etc. GET /spaces/:id/seats - возвращает массив мест в выбранном спейсе - [{id:uuid, number:52, spaceID: uuid, usbTypeC: true, hdmi: true}] etc. docker build -t dima95/coworking-app -f docker/Dockerfile . docker run -p 3000:3000 -d dima95/coworking-app 2021-10-18