Skip to content

Flask application to show meeting room availability based on google calendar

License

AGPL-3.0, OFL-1.1 licenses found

Licenses found

AGPL-3.0
LICENSE
OFL-1.1
LICENSE_fonts
Notifications You must be signed in to change notification settings

seibert-media/supermeet

Repository files navigation

supermeet

This is a small flask application which renders a room information screen based on the availability in google calendar. Users can interact with the booking by changing the end time or booking a new appointment.

Supermeet has been tested to run under python 3.10 and 3.11.

License

Supermeet is licensed under AGPL 3.0. The included font (Lato) is licensed under the SIL Open Font License.

Installation

  1. deploy the git repository onto your server
  2. (Optional, but recommended) create and activate a python3 virtualenv
  3. install the application by running pip install -e /path/to/git/repo
  4. (Optional, but recommended) install gunicorn
  5. deploy your service account json and config.toml
  6. run supermeet

Example systemd unit file

This example assumes you run a reverse proxy in front of the application, and you have gunicorn installed.

[Unit]
Description=flask application supermeet
After=network.target

[Service]
Environment=APP_CONFIG=/opt/supermeet/config.toml
Environment=APP_SECRETS=/opt/supermeet/secrets.json
Environment=FLASK_SECRET=changeme
User=www-data
Group=www-data
ExecStart=/opt/supermeet/venv/bin/gunicorn -w 4 -b 127.0.0.1:4000 supermeet.web:app

[Install]
WantedBy=multi-user.target

About

Flask application to show meeting room availability based on google calendar

Resources

License

AGPL-3.0, OFL-1.1 licenses found

Licenses found

AGPL-3.0
LICENSE
OFL-1.1
LICENSE_fonts

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published