Mote (or Meetbot Logs) is a web service that aggregates and distributes summaries, minutes and logs of meetings that takes place in an IRC or Matrix channel for the Fedora Project.
The web service has the following features
- Chronological lookup of meeting summaries, minutes and logs using an interactive calendar view
- Snappier loading up of content due to application-like interface and behaviour of the web service
- Channel-wise and date-wise distinction of meeting summaries, minutes and logs within modals
- Faster intuitive search of meeting summaries, minutes and logs using asynchronous fetching
- Beautiful Soup 4
- Fedora Messaging 3
- Flask 2
- Flask Caching 2
- Flask SocketIO 5
- Gevent 21
- Gunicorn 20
- Redis 4
- Requests 2
- Fork the repository.
https://github.com/fedora-infra/mote
- Download the archive of meeting logs from the link below.
https://mega.nz/file/cJYykbKA#jJozcnIG-WzwlYVQUXF25lqM5A8PNl2knQObQrSpOSk
- Clone the forked repository to your local storage.
$ git clone git@github.com:<username>/mote.git
- Navigate into the cloned repository.
$ cd mote
- Depending on the kind of approach required, follow either of the below sections.
- Install Podman on Fedora Linux.
$ sudo dnf install podman
- Extract the previously downloaded archive of meeting logs in the directory of the cloned repository.
$ tar -xzf meetbot.tar.gz
- Build the container image.
$ podman build -t mote .
- Start the development server on an IPv4 address and on port 9696.
$ podman run -it --rm -p 9696:9696 -v ./meetbot:/srv/web/meetbot:Z -v ./mote:/opt/app/mote:Z mote
- Install Python 3, Virtualenv and Poetry on Fedora Linux.
$ sudo dnf install python3 python3-virtualenv poetry
- Extract the previously downloaded archive of meeting logs in the
/srv/web
directory.$ sudo mkdir -p /srv/web $ sudo chown $USER /srv/web $ tar -xzf meetbot.tar.gz -C /srv/web
- Create and activate the virtual environment.
$ virtualenv venv $ source venv/bin/activate
- Install the defined packages from the Python project configuration file.
$ (venv) poetry install
- Start the development server on an IPv4 address and on port 9696.
$ (venv) mote -p 9696 -4
- Install Python 3, Virtualenv and Poetry on mac machine.
$ brew install python@3 virtualenv poetry
- Extract the previously downloaded archive of meeting logs in the
/srv/web
directory.$ mkdir -p /srv/web $ tar -xzf meetbot.tar.gz -C /srv/web
- Create and activate the virtual environment.
Navigate into the directory where you extracted the meeting logs.
Create and activate a virtual environment:
$ cd /srv/web $ virtualenv venv $ source venv/bin/activate
- Install the defined packages from the Python project configuration file.
$ (venv) poetry install
- Start the development server on an IPv4 address and on port 9696.
$ (venv) mote -p 9696 -4
The project is be served on http://localhost:9696/ and with appropriate firewall rules, it should be accessible to the devices connected to the same network.
Folks can contribute to the project by the following means
- Writing documentation to better explain the functionality and development of the web service
- Testing out the newly staged versions of the web service and reporting bugs on the issue tracker.
- Collaborating with the Fedora Websites and Apps Team to discuss about new features and advancements.
- Opening pull requests to the repository to address existing issues available on the issue tracker.