All Projects → 4minitz → 4minitz

4minitz / 4minitz

Licence: mit
4Minitz - Simply a decent free webapp for taking collaborative meeting minutes. (Keywords: Meeting Protocols, Action Items, Open Source). Check it out on our demo server:

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to 4minitz

Meteor Astronomy
Model layer for Meteor
Stars: ✭ 608 (+386.4%)
Mutual labels:  mongodb, meteor
Kepler
The open source full-stack geosocial network platform
Stars: ✭ 125 (+0%)
Mutual labels:  mongodb, meteor
Meteor Collection Hooks
Meteor Collection Hooks
Stars: ✭ 641 (+412.8%)
Mutual labels:  mongodb, meteor
Uwsgi Nginx Docker
Docker image with uWSGI and Nginx for applications in Python 3.5 and above and Python 2.7 (as Flask) in a single container. Optionally with Alpine Linux.
Stars: ✭ 466 (+272.8%)
Mutual labels:  docker-image, webapp
Meteor Collection2
A Meteor package that extends Mongo.Collection to provide support for specifying a schema and then validating against that schema when inserting and updating.
Stars: ✭ 1,020 (+716%)
Mutual labels:  mongodb, meteor
Meteor Publish Composite
Meteor.publishComposite provides a flexible way to publish a set of related documents from various collections using a reactive join
Stars: ✭ 546 (+336.8%)
Mutual labels:  mongodb, meteor
Mean Angular5 Passport Authentication
Securing MEAN Stack (Angular 5) Web Application using Passport Authentication
Stars: ✭ 24 (-80.8%)
Mutual labels:  mongodb, webapp
Drmongo
MongoDB admin app built on MeteorJs.
Stars: ✭ 283 (+126.4%)
Mutual labels:  mongodb, meteor
Docker Vue Node Nginx Mongodb Redis
🐉 An awesome boilerplate, Integrated Docker, Vue, Node, Nginx, Mongodb and Redis in one, Designed to develop & build your web applications more efficient and elegant.
Stars: ✭ 34 (-72.8%)
Mutual labels:  mongodb, webapp
Passwordcockpit
Passwordcockpit is a simple, free, open source, self hosted, web based password manager for teams. It is made in PHP, Javascript, MySQL and it run on a docker service. It allows users with any kind of device to safely store, share and retrieve passwords, certificates, files and much more.
Stars: ✭ 34 (-72.8%)
Mutual labels:  docker-image, webapp
Mongo Seeding
The ultimate solution for populating your MongoDB database.
Stars: ✭ 375 (+200%)
Mutual labels:  mongodb, docker-image
Mean Stack Angular5 Crud
MEAN Stack (Angular 5) CRUD Web Application Example
Stars: ✭ 107 (-14.4%)
Mutual labels:  mongodb, webapp
Wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
Stars: ✭ 17,648 (+14018.4%)
Mutual labels:  meteor, docker-image
Pup
The Ultimate Boilerplate for Products.
Stars: ✭ 563 (+350.4%)
Mutual labels:  mongodb, meteor
Nosqlclient
Cross-platform and self hosted, easy to use, intuitive mongodb management tool - Formerly Mongoclient
Stars: ✭ 3,399 (+2619.2%)
Mutual labels:  mongodb, meteor
Metasfresh
We do Open Source ERP - Fast, Flexible & Free Software to scale your Business.
Stars: ✭ 807 (+545.6%)
Mutual labels:  business, docker-image
Startup Landing
Collection of free top of the line startup landing templates built using react/nextjs/gatsby. Free to download, simply edit and deploy! Updated weekly!
Stars: ✭ 176 (+40.8%)
Mutual labels:  business, webapp
WorkGroup
Self-Hosted private Social Media-Intranet for Companies.
Stars: ✭ 21 (-83.2%)
Mutual labels:  business, webapp
Checksheet Manager
Checksheet Manager for college checksheets. Created with AngularJS and Node/Express/MongoDB.
Stars: ✭ 31 (-75.2%)
Mutual labels:  mongodb, webapp
Mean Stack Angular6 Crud Example
MEAN Stack Angular 6 CRUD Web Application
Stars: ✭ 69 (-44.8%)
Mutual labels:  mongodb, webapp

master/ Build Status develop/ Build Status Code Climate Docker Pulls CLA assistant Crowdin

4Minitz!

Simply the best a decent free webapp for taking meeting minutes.

  • Create a meeting series and invite others
  • Specify moderators, invited and informed users
  • Create an agenda with multiple topics
  • Attend a meeting via web with reactive live updates
  • 1-button sending of agenda, minutes and action items by email
  • Use labels to tag items for later retrieval
  • Upload binary attachments to minutes (e.g., presentations, photos)
  • Track open action items and unfinished topics across meetings
  • Full privacy: Host your own server - it's easy!

(Click to enlarge screen shot)


4Minitz Demo Video

(Click to play Demo Video)

Documentation is "continuously" not finished... Nevertheless these WIP docs may be of help:

External Project Links

4Minitz is proudly sponsored by

Method Park

Deployment Quick Start

To quickly set up a local demo of 4Minitz at your site for evaluation and testing you can use our sample Docker Compose configuration file and run it with

docker-compose up

You can now access 4Minitz by pointing your browser to http://localhost:3100.

If you don't want to use docker-compose you can use just docker by starting the two containers manually:

docker run --rm --name mongo mongo
docker run --rm --name 4minitz \
    -v $PWD/4minitz_storage:/4minitz_storage \
    -p 3100:3333 \
    -e MONGO_URL=mongodb://mongo/4minitz \
    --link mongo \
    4minitz/4minitz:stable

Don't miss the Admin Guide with a more comprehensive coverage of the real production building & installation topic! Especially see how to configure your 4Minitz docker server.

Development environment (Linux, Mac)

Attention: This is not a proper setup for production deployment! It is intended for developers and so it has some security drawbacks (No password protection for MongoDB) and also consumes some amount of extra RAM (>700 MB)). Don't miss the Admin Guide with a more comprehensive coverage of the real production installation topic!

Prerequisites

4minitz is realized with the Meteor JS Framework. So, first install the current version of meteor:

curl https://install.meteor.com/ | sh
meteor --version

On Windows? Download the meteor installer. As an experienced Windows admin you sure can transfer the below steps for Linux and Mac to your OS.

Run development version (Linux & Mac)

Once Meteor is set up you can clone and run 4Minitz from source like this:

git clone https://github.com/4minitz/4minitz.git
cd 4minitz
cp settings_sample.json settings.json
./runapp.sh

Wait some time for meteor to finish downloading and building. You can reach 4Minitz via the default port 3100 by opening http://localhost:3100 in your browser

Hint: There is a settings_sample.json file that has quite a few configuration options (like sending eMails etc.). Don't miss the Admin Guide with more details on this topic.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].