Roombooking System: Difference between revisions

From The Munich Maker Lab's Wiki
Jump to navigation Jump to search
(labarchives scheduler)
(it's up and running 🥳)
Line 1: Line 1:
COVID brings some interesting challenges with it. One thing is that in order to keep our space open, we were given a limit of people that can be in the space at the same time. Also, we are supposed to make sure there's only one person in one section of the space at the same time.
{{project
|name=Roombooking
|image=Roombooking-screenshot01.png
|description=A system to allow members to reserve a part of the lab to work on stuff.<br>[https://rooms.munichmakerlab.de/ Link to MuMaLab Rooms]
|status=beta
|author=[[User:Tiefpunkt|Severin]]
}}COVID brings some interesting challenges with it. One thing is that in order to keep our space open, we were given a limit of people that can be in the space at the same time. Also, we are supposed to make sure there's only one person in one section of the space at the same time.


For the first part, we have a check-in system, but for the second part, we've been kind of lucky to keep that up just by sheer luck. However, sometimes you want to use the workshop, and it's already taken. Also, for post-COVID times, sometimes, parts of the workshop or tools can only be used by a single person. Like the workshop when somebody is welding. So we could totally use a room booking system.
For the first part, we have a check-in system, but for the second part, we've been kind of lucky to keep that up just by sheer luck. However, sometimes you want to use the workshop, and it's already taken. Also, for post-COVID times, sometimes, parts of the workshop or tools can only be used by a single person. Like the workshop when somebody is welding. So we could totally use a room booking system.
== tl;dr; ==
We're trying this out: https://rooms.munichmakerlab.de/


== Requirements ==
== Requirements ==
Line 19: Line 27:
** Seems to work fine with PHP7.2, doesn't work with 7.4 (v2.7.1,mnot checked with the latest version still available)
** Seems to work fine with PHP7.2, doesn't work with 7.4 (v2.7.1,mnot checked with the latest version still available)
** Very promising
** Very promising
** They are also the team behind [https://www.labarchives.com/scheduler/ LarbArchives Scheduler], which looked promising but is also not OSS
** They are also the team behind [https://www.labarchives.com/scheduler/ LabArchives Scheduler], which looked promising but is also not OSS
* [https://www.classroombookings.com/ ClassroomBookings] [https://github.com/craigrodway/classroombookings GitHub Repo]
* [https://www.classroombookings.com/ ClassroomBookings] [https://github.com/craigrodway/classroombookings GitHub Repo]
** Aimed at schools, very nice and easy to use
** Aimed at schools, very nice and easy to use
Line 28: Line 36:
* [https://www.fab-manager.com/ Fab-Manager]
* [https://www.fab-manager.com/ Fab-Manager]
** Has a module for reservations but it's a bigger deal to set it up, so that's not really the best thing for now probably
** Has a module for reservations but it's a bigger deal to set it up, so that's not really the best thing for now probably
== Trials ==
We had two candidates, Booked and Classroom Bookings. Classroom Bookings looked great but was a little difficult to setup, and also did not offer any options for self-registration. Booked was easier to setup, while the installation itself was a tiny bit rougher. And it allows us to not have to signup everyone upfront. So that was the winner
== Actual setup ==
We have a little bit older version of Booked running in a docker container on jupiter.munichmakerlab.de, on a MariaDB also in another Docker container.


== The Past ==
== The Past ==

Revision as of 12:52, 20 November 2020

   
Roombooking

Release status: beta [box doku]

Roombooking-screenshot01.png
Description A system to allow members to reserve a part of the lab to work on stuff.
Link to MuMaLab Rooms
Author(s)  Severin

COVID brings some interesting challenges with it. One thing is that in order to keep our space open, we were given a limit of people that can be in the space at the same time. Also, we are supposed to make sure there's only one person in one section of the space at the same time.

For the first part, we have a check-in system, but for the second part, we've been kind of lucky to keep that up just by sheer luck. However, sometimes you want to use the workshop, and it's already taken. Also, for post-COVID times, sometimes, parts of the workshop or tools can only be used by a single person. Like the workshop when somebody is welding. So we could totally use a room booking system.

tl;dr;

We're trying this out: https://rooms.munichmakerlab.de/

Requirements

  • Simple - it should be as simple as possible really
  • Webbased - obviously
  • Accounts - When we started looking for tools, we noticed that logins/accounts might be an issue. Ideally, this would connect to some other solution we already have, which is basically just the wiki, or potentially loomio. Alternatively, it should have an easy system for creating accounts.
  • Look&Feel - It shouldn't feel like it came out of the past century ideally

Candidates

Well, there isn't all that much out there. Corps usually use Exchange/Outlook for that kind of stuff, or GSuite, which is both not an option for us.

Trials

We had two candidates, Booked and Classroom Bookings. Classroom Bookings looked great but was a little difficult to setup, and also did not offer any options for self-registration. Booked was easier to setup, while the installation itself was a tiny bit rougher. And it allows us to not have to signup everyone upfront. So that was the winner

Actual setup

We have a little bit older version of Booked running in a docker container on jupiter.munichmakerlab.de, on a MariaDB also in another Docker container.

The Past

A long time ago, we were given the task to build a roombooking sytsem for our first "landlord", the Werk 1. This is what this page was originally aimed at. This old revision has all the details.