MeetIA is a multi-container platform designed for efficient and productive collaboration in modern workplaces. It simplifies meeting management, enhances communication, and automates transcription and summarization of meeting recordings. This tool is the key to boosting productivity and streamlining teamwork.
- Meeting Management: Easily schedule, invite participants, and keep track of meetings.
- Automatic Transcription: Meeting recordings are transcribed automatically.
- NLP Summarization: Summarize meeting content using NLP libraries.
- Secure Data Storage: Safely store meeting data and transcripts.
- User-Friendly Interface: Intuitive and easy to navigate.
- Boost Productivity: Streamline meeting tasks and save time.
- Improve Communication: Enhance collaboration and discussion.
- Effortless Documentation: Automate recording and summarization.
- Data-Driven Insights: Access historical data for decision-making.
- Security: Protect sensitive data with robust access controls.
MeetIA consists of two core services orchestrated using Docker Compose:
- Utilizes the latest MySQL image (
mysql:latest
). - Named meetiadb.
- Environment variables configure the MySQL instance.
- Utilizes the mysql_data volume for data persistence.
- Connected to the mynet network.
- Depends on db.
- Builds from a Dockerfile.
- Listens on port 8000.
- Uses environment variables for configuration.
- Handles media files with the media-volume volume.
- Connected to the mynet network.
- Two named volumes: mysql_data for MySQL data and media-volume for managing media files.
- A bridge network named mynet facilitates service communication.
This architecture simplifies meeting management, automates transcription, and provides secure data storage, ensuring a seamless and productive collaborative work environment.
Before you begin, please ensure that you have Docker and Docker Compose installed on your system.
We'll use Docker Compose to set up the components outlined in the architecture section. Follow these steps:
-
Open a terminal.
-
Navigate to the root directory of your project.
-
Run the following command to start the services:
docker-compose up
This command will orchestrate the database and application services, creating the necessary containers.
Once the services are up and running, you can create the admin superuser by executing the following command:
docker exec -it meetiaappserver /bin/bash -c "source myenv/bin/activate && python3 manage.py createsuperuser"
This command opens a shell within the meetiaappserver container, activates the virtual environment, and creates the admin superuser.
With the admin superuser created, you can now access the Django admin interface to add MeetIA users:
-
Open your web browser.
-
Navigate to the admin login page by visiting: Admin
-
Log in using the credentials of the admin superuser created in Step 2.
-
In the admin interface, you can add, manage, and configure MeetIA users as needed.
Now that you've set up the system and created users, you can access MeetIA by visiting: Home
You're all set! MeetIA is up and running, and users can start connecting and collaborating.