Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dsc-umass/meetsync
An Application to Meet and Sync with people
https://github.com/dsc-umass/meetsync
docker meeting nodejs react webapp
Last synced: about 1 month ago
JSON representation
An Application to Meet and Sync with people
- Host: GitHub
- URL: https://github.com/dsc-umass/meetsync
- Owner: dsc-umass
- License: mit
- Created: 2019-10-23T02:07:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T19:43:29.000Z (almost 2 years ago)
- Last Synced: 2024-05-28T13:28:46.350Z (7 months ago)
- Topics: docker, meeting, nodejs, react, webapp
- Language: Ruby
- Homepage: http://meetsync.umassdsc.com/
- Size: 1.89 MB
- Stars: 6
- Watchers: 4
- Forks: 0
- Open Issues: 46
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Open-Source-Ruby-and-Rails-Apps - meetsync - An Application to Meet and Sync with people 🔥 ✅ 🚀 (Happy Exploring 🤘)
README
![Master CI](https://github.com/dsc-umass/meetsync/workflows/Ruby%20Tests/badge.svg)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)# Meetsync
MeetSync is an application to help individuals, teams and organizaitons to sync themsleves based on people's availablities and make meeting and coordinating super easy. MeetSync hopes to provide a robust system to make meeting times easy with reminders to fill out the meetsync, calendar integrations and fast and responsive UI.
## Getting Started
### Prerequisites
Since the applciation has been containerized through docker-compose, you would need docker-compose.
### Installing & Running the Containers
To build the container(this is a one time build):
```
sudo docker-compose build
```To run the container (everytime you want to start the application):
```
sudo docker-compose up
```You can press ctrl/command + C on the terminal to stop the container.
### Accessing the Rails Container
To access the Rails Container(make sure the containers are already running):
```
sudo bash docker_shell.sh
```
If you want to access the rails console, then run the following command after the previous one:```
rails c
```### Accessing the Postgres Container
To access the Postgres Container(make sure the containers are already running):
```
sudo bash db_shell.sh
```Then type:
```
psql meetsync_development meetsync meetsyncpass
```### Common Errors & FAQ
In case of a database not found or database not created error:
Access the Rails Container and run:
```
cd dockerbash db_setup.sh
```If you want to reset the container and want to rebuild it, run:
```
sudo docker-compose down
```and then rebuild it with docker-compose build