This project is a Facebook Messenger Bot which can be used by hospitals to remind parents about when their kid(s) should get vaccinated through Facebook Messenger.
This bot has the following features,
- Sends reminders to parents about when the next vaccine is due for their kid(s)
- Check the vaccines that have been already taken.
- Provide information about the vaccines that should be taken in the future.
- Details about each vaccine.
- Managing subscription for vaccine reminders.
- Using Natural language processing(NLP), it answers questions about vaccines.
- Based on user consent, provide the data to hospitals using Google Sheets.
- Hospitals can also edit the due date for vaccines through Google sheets
Check this link to know what is facebook messenger bot and how to use it : Click Here
- Ruby
- MySQL Database
- Online hosting server (AWS, Heroku, Google Cloud or any other hosting server)
- Wit Project (For Natural Language Processing)
First, you'll need to fork and clone this repo
Open Terminal. Change the current working directory to the location where you want the cloned directory to be created.
git clone https://github.com/Balaji-Ramasubramanian/smart-vaccine-reminder.git
Let's get all our dependencies setup:
bundle install
You need to change the .env file with your appropriate access tokens, usernames, and passwords. You need to add the following details,
- Facebook page access token
- Verify token for your Facebook app
- App secret token
- Wit access token
- Database Host
- Database Name
- Database Username
- Database Password
First, you'll need to migrate the database tables
rake db:migrate
It consists of 2 tables,
- default_vaccine_schedule
- vaccination_schedule
The schema of the table is as follows,
- Vaccine name.
- The next due date for the vaccine.
- URL that has more details about that vaccine.
This table contains the parents and their kid's details, vaccination days.
After the migration of the database tables, you need to fill up the default_vaccine_schedule table.
To do that, run the following command from your root of the project file
ruby database_editors/default_vaccine_schedule_filler.rb
This will automatically fill the default values in the table.
You need to have Heroku CLI installed to deploy the bot in Heroku. To find more details about Heroku CLI, click here.
You can follow this link to setup the Heroku environment for the project.
For this project, you need the following resources in your Heroku project,
- ClearDB MySQL :: Database
- Heroku Scheduler
I will update the instructions for deploying the app in AWS, Google Cloud and Microsoft Azure shortly.
- Fork the project.
- Make required changes and commit.
- Generate a pull request. Mention all the required description regarding the changes you have made.
If you need any help in customizing and deploying this project, email me @ balaji030698@gmail.com
Copyright 2018 Balaji Ramasubramanian
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.