­
Documentation | CocoQMS - Queue Management System (Hospital/Clinic/Bank)

Coco Queue Management System Software for Hospital (Queue Management System).

Version 1.0 Last Documentation Update - 29/07/2024

Welcome

CocoQMS is a software for managing medical examination and taking the order number for patients, used with kiosk to get the order number, receptionist, and choose the clinic.
The doctor associated with the hospital's HIS software available via the API provided.

Author: ZiniSoft Team
Demo:
  • Step 1:
    Guest - Customer get Ticket (Token number) (Link demo)
  • Step 2:
    Token number will be displayed on display of the counter (Link demo)
  • Step 3:
    Receptionist logins to manage reception counter (Link demo)
    Account:
    E-mail: reception@gmail.com
    Password: 123456

Requirements

Operating system: support for Windows + Linux.

Services need to install:
Web service: NodeJS: Download
Database: MongoDB: Download
Mail server: Mailgun: https://login.mailgun.com/login/
Google Speech to Text: https://cloud.google.com/?hl=en
OS: Windows 10, Windows 11 or Windows Server 2018 or higher.

A. Installing services on Windows:

A-1. Install Web sevices Node.js
Visit the official website of Node.js at https://nodejs.org.
Download Node.js settings for Windows.


Open the .msi file downloaded to start the installation process. Click "Next" to install.

Follow the instructions in the installation process. Make sure you select the "Add to Path" option to facilitate the use of Node.js in Command Prompt.


Check the Node.js version was installed with Command Prompt or PowerShell:
$ node --version
$ npm --version


Next step is to install "forever" using the following command:
$ npm install forever -g


Check "forever" version:
$ forever --version


Now, once "forever" is installed, we are ready to run application.


A-2. Install database MongoDB: (Reference more on their offical web: https://www.mongodb.com/docs/manual/tutorial/install-mongodb-on-windows)
Download the MongoDB Community .msi installer from the following link: MongoDB Download Center
Select the MongoDB version that is suitable for your Windows operating system and click the "Download" button to download the installer.


Open the .msi file downloaded to start the installation process.
Select "Complete" when asked to install.


Make sure you choose the Install MongoDB as a Service option to automatically run as a Windows service.

You can also choose Install MongoDB Compass if you want to install MongoDB Compass, a GUI tool to manage MongoDB.
Configure path:
Open Start Menu and search Advanced System Settings and then click the Environment Variables button.


In the System Variables section, find and select the "path" variable, then click the "Edit" button.


Add the path to the bin folder of MongoDB (the default is C:\Program Files\Mongodb\Server\{Version}\bin), and click "OK".


Start MongoDB:
If you have chosen MongoDB settings as a service, it will automatically run after installation.
If you do not install MongoDB as a service, you can boot it by opening Command Prompt and running the following command:
$ mongod



Install Mongo Shell: https://www.mongodb.com/try/download/shell
Select the version that is suitable for your Windows operating system and click the "Download" button to download the installer.


Open the .msi file downloaded to start the installation process.

Copy the folder path to add to environmental variables. Then click "Next" and "Install" to complete the installation.
Add the path to the bin folder of MongoDB (the default is C:\Users\Admin\AppData\Local\Programs\mongosh), and click "OK".

Check the Mongo Shell was installed with Command Prompt or PowerShell:
$ mongosh



* Note: After installation, MongoDB runs in unauthenticated mode, that is, you can connect without a username/password. MongoDB default uses port 27017.
To change the default port of MongoDB, you need to edit the configuration file of MongoDB.
The configuration file is usually mongod.cfg, located in the MongoDB installation directory, for example: C:\Program Files\MongoDB\Server\\bin\mongod.cfg.

Open the file with notepad or other text editing process (with Administrator).
Find the line containing port: (usually in the net :) and change the port value. For example: 27017 -> 2817.


After saving the changes, open Command Prompt or PowerShell (with Administrator) and restart the MongoDB service:
$ net stop MongoDB
$ net start MongoDB


To configure authentication, you need to turn on authentication and create administrative accounts.
Create administrative accounts with Command Prompt or PowerShell:
Connect to MongoDB:
$ mongosh
Switch to administrative databases:
$ use admin
Create a user with administrative privileges. For example: user = "admin_user" and password ="admin_password".
$ db.createUser({ user: "admin_user", pwd: "admin_password", roles: [ { role: "root", db: "admin" } ] })
Exit from MongoDB:
$ exit


Find the line containing security in mongod.cfg file and add the following code:
security: authorization: enabled

After saving the changes, restart the MongoDB service:
$ net stop MongoDB
$ net start MongoDB
Reconnect to MongoDB with the admin account to check the authentication configuration.
$ mongosh -u admin_user -p admin_password --authenticationDatabase admin


Check the list of administrative users:
$ use admin
$ show users


To create a new database (for example, the database name is qms_db), you can follow these steps:
Open Command Prompt or PowerShell and connect to MongoDB:
$ mongosh (unauthenticated mode)
$ mongosh -u admin_user -p admin_password --authenticationDatabase admin (authenticated mode)
MongoDB automatically creates a database when you perform the first insert.
$ use qms_db
Replace qms_db with the database name you want to create.
MongoDB only really creates a database when data is stored in it. You need to insert at least one document into a collection. $ db.myCollection.insertOne({ name: "Sample data" })
MyCollection is the name collection you want to create.
Document {Name: "Sample data"} is a sample data.
Check the list of collections in the database:
$ show collections

If authenticated mode, you need create administrative accounts for database qms_db.
$ mongosh -u admin_user -p admin_password --authenticationDatabase admin
$ use qms_db
$ db.createUser({user: "qms_user", pwd: "qms_password", roles: [{ role: "dbOwner", db: "qms_db" }]})
View the user list in the database:
$ db.getUsers()
$ exit


After the account is created, you can log in to the database qms_db with a new account:
$ mongosh -u qms_user -p qms_password --authenticationDatabase qms_db


Check the list of all databases of qms_user account:
$ show dbs




B. Installing services on Linux:

If you are using hosting: They will provide you all the credentials to access: FTP and Database account.
If you are using VPS (Ubuntu 22.x Recommended): Login to SSH server and install:
- B. Install Nginx: Reference: https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-22-04
System update:
$ sudo apt update


$ sudo apt upgrade


Install Nginx:
$ sudo apt install nginx


Start and activate Nginx:
$ sudo systemctl start nginx
$ sudo systemctl enable nginx


Check the status of Nginx:
$ sudo systemctl status nginx


- Install MongoDB: Reference: https://www.mongodb.com/docs/manual/tutorial/install-mongodb-on-ubuntu/
Import the public key used by the package management system:
$ sudo apt-get install gnupg curl


$ curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | \ sudo gpg -o /usr/share/keyrings/mongodb-server-7.0.gpg \ --dearmor

Create a list file for MongoDB:
$ echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-7.0.gpg ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/7.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-7.0.list

Reload local package database:
$ sudo apt-get update


Install the MongoDB packages:
$ sudo apt-get install -y mongodb-org


Start and activate MongoDB:
$ sudo systemctl start mongod
$ sudo systemctl enable mongod
Check MongoDB status:
$ sudo systemctl status mongod



* Note: After installation, MongoDB runs in unauthenticated mode, that is, you can connect without a username/password. MongoDB default uses port 27017.
To change the default port of MongoDB, you need to edit the configuration file of MongoDB.
$ sudo nano /etc/mongod.conf
Find the line containing port: (usually in the net :) and change the port value. For example: 27017 -> 2817.

After saving the changes, restart the MongoDB service:
$ sudo systemctl restart mongod
To configure authentication, you need to turn on authentication and create administrative accounts.
Create administrative accounts with Command Prompt or PowerShell:
Connect to MongoDB:
$ mongosh
Switch to administrative databases:
$ use admin
Create a user with administrative privileges. For example: user = "admin_user" and password ="admin_password".
$ db.createUser({ user: "admin_user", pwd: "admin_password", roles: [ { role: "root", db: "admin" } ] })
Exit from MongoDB:
$ exit


Find the line containing security in /etc/mongod.conf file and add the following code:
security: authorization: enabled


After saving the changes, restart the MongoDB service:
$ sudo systemctl restart mongod
Reconnect to MongoDB with the admin account to check the authentication configuration.
$ mongosh -u admin_user -p admin_password --authenticationDatabase admin

Check the list of administrative users:
$ use admin
$ show users

To create a new database (for example, the database name is qms_db), you can follow these steps:
Open Command Prompt or PowerShell and connect to MongoDB:
$ mongosh (unauthenticated mode)
$ mongosh -u admin_user -p admin_password --authenticationDatabase admin (authenticated mode)
MongoDB automatically creates a database when you perform the first insert.
$ use qms_db
Replace qms_db with the database name you want to create.
MongoDB only really creates a database when data is stored in it. You need to insert at least one document into a collection. $ db.myCollection.insertOne({ name: "Sample data" })
MyCollection is the name collection you want to create.
Document {Name: "Sample data"} is a sample data.
Check the list of collections in the database:
$ show collections


If authenticated mode, you need create administrative accounts for database qms_db.
$ mongosh -u admin_user -p admin_password --authenticationDatabase admin
$ use qms_db
$ db.createUser({user: "qms_user", pwd: "qms_password", roles: [{ role: "dbOwner", db: "qms_db" }]})
View the user list in the database:
$ db.getUsers()
$ exit


After the account is created, you can log in to the database qms_db with a new account:
$ mongosh -u qms_user -p qms_password --authenticationDatabase qms_db


Check the list of all databases of qms_user account:
$ show dbs


- Install Node.js: Reference: https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-22-04
Add Nodesource repository:
$ curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -


* Replace 18.x with the Node.js version you want to install.
Install Node.js:
$ sudo apt-get install -y nodejs


Check Node.js version:
$ node --version
$ npm --version

Next step is to install "forever" using the following command:
$ sudo npm install forever -g

Check "forever" version:
$ sudo forever --version


Now, once "forever" is installed your server, we are ready to run our application.

Configure Source Code

This is a general installation overview of the script.
Follow the steps as explained, and you will complete the installation process.

A. SOURCE CODE CONFIG

Open file .env.example and rename to .env located inside script folder.
* Replace "" with your database username, password and database name.
- If you have not turned on the authentication on MongoDB, you do not need to provide username and password.
MONGO_USER=""
MONGO_PASSWORD=""
MONGO_DB_NAME="qms_db"
- If you have turned on authentication on MongoDB, you need to provide username and password.
You can review the list of user management with the following commands:
$ mongosh -u admin_user -p admin_password --authenticationDatabase admin
$ use qms_db
$ show users
Example: username = "qms_user" and password = "qms_password"
MONGO_USER="qms_user"
MONGO_PASSWORD="qms_password"
MONGO_DB_NAME="qms_db"

* Replace your url and port.
By default, the Sails.js application will run at port 1337 and url is http: // localhost: 1337.
SAILS_PORT=1337
SAILS_BASE_URL="http://localhost:1337"

* Replace "" with your maigun credentials you have when register on Mailgun.
MAIL_AUTH_USER="no-reply@yourdomain.com"
MAIL_AUTH_PASSWORD="xxx"
MAIL_AUTH_HOST="smtp.eu.mailgun.org"
MAIL_AUTH_PORT="587"
MAIL_FROM="no-reply@yourdomain.com"

* If you need to send / received email, we support Mailgun service, please replace all the credentials above by your Mailgun server config. Reference: https://documentation.mailgun.com/

Then Upload all files/folders located inside "script" folder to your server.

One Click Installation (Web App)


- Ensure that Node.JS, MongoDB is installed on your computer.
- Ensure that Web server API is started. (Backend API)
- Ensure that HTTP server is started. (Frontend)

A- Run the Web server API.

Login to your server and go to source code folder:
$ cd /path/to/qms/
Note: You MUST go to working folder contains source code before run script.
Before run application, you need to install all the dependencies below:
$ npm install -g sails - Required to run API server App
$ npm install -g forever - Required to run forever on production
$ npm install -g serve - Required to run HTTP server for frontend app
$ npm install


To start our application, run the following command:
$ sails lift

Now your node server is running on PORT 1337.
To stop our application, press CTRL+ C

** Note: CocoQMS build on Sails JS Framework, so if you need further information how to config advanced, reference: https://sailsjs.com/get-started
If you need to run forever on production enviroment, run the following command using "forever": $ forever start app.js

B- Run the HTTP server frontend.

$ cd /path/to/qms/frontend
serve -s dist to run the application.
The default port for running the application will be 3000. You can customize it by adding the parameter -l [YOUR_PORT].
Example: to run the application on port 4000, use the command serve -s dist -l 4000.


C- One Click Installation

After starting both the web server API and the HTTP server frontend, go to http://localhost:3000/installation to set up the initial data.


App Name: Enter the name of the application.
Full Name: Full name of the administrator account.
Email: Email address of of the administrator account.
Password: Enter the account password, length from 6 - 256 characters.
Confirm Password: Re-enter the password, must match the previously entered password.
Install test data: If checked, the system will automatically install sample data for some modules, including data for demo modes. If unchecked, you will need to create data manually to start using the application.

Here you can perform the following steps to quickly install the application:
  • Step 1: Enter the required information, then select Install to install.
  • Step 2: Choose Log in to go to the Login page. Use your previously registered account to log in.

Integrate with 3rd API

You can also integrate with the hospital's or clinic's patient management system by linking the queue number with the patient code. We provide sample APIs for your reference and self-integration.
Replace our API with your API. The returned data format should be JSON. For example:



The attributes of data:
- patient_id: Patient code.
- fullname: Full name.
- address: Address.

In addition, you can search for patients using a keyword. The system will look for patients whose full name or patient ID contains that keyword.
For example, as shown above: keyword=Angel

You can also refer to our Postman collection by importing `CocoQMS.postman_collection.json` from the "postman" folder.

Google Text-to-Speech API

You need Google Text-to-Speech service, because we have to play audio sound on TV device or any android device support browser and have sound card.
For ex: After the patient presses GET NUMBER, the TV screen will play a sound: `Customers with number [NUMBER_ID], please proceed to counter number [COUNTER_CODE]`.
With [NUMBER_ID] and [COUNTER_CODE] as variables, we can configure any sound to support.
Refer more as: USER GUIDE > Audio Management
** Note: You can also upload your own voice instead of using the Google Text-to-Speech service AI.

Create Google Cloud account:
Visit Google Cloud Platform at https://cloud.google.com.
If you do not have a Google Cloud account, register your account. And then click "Console" to go to the dashboard page.


Create a new project:
After logging into Google Cloud Platform, click the drop -down menu in the upper left corner and select "New Project".


Fill in the project name and select the location (if necessary), then click "Create".


Activate Google Text-to-Speech API:
In your project management page, click the menu "Apis & Services"> "Library".
Search "Text-to-Speech API" and click it.


Click the "Enable" button to activate the API.


Create authentication API Key:
In "Enabled APIs & Services" > "Credentials", click "Create Credentials" and select "Service account".



Fill in the service account name, service account ID and then click "Create and continue".

Select a role (optional) and then click "Continue".

Click "Done" to complete.

Click the email you created.

In "Keys", click "Add key" and select "Create new key"

Choose key type is JSON and click "Create".


Google will create a private key and save it to your computer.


Open file and rename to credentials.json and put it inside the script folder. You will need it to use API to create audio files.






Deployment

We recommend to use this app on Linux enviroment and with NginX service. If you are using Windows, please config with IIS service by yourself. Refer: Deploy React application

Run the application on Linux:

Config Nginx file:
You need 1 domain to configure: for ex: queuedemo.com (website) and api.queuedemo.com (api).
Download the sample file here: sample-api.conf and sample.conf .

With API domain:
Replace the demo API domain name with your API domain name.
Replace path to script folder with your path to script folder.
Replace port with your port.


With website domain:
Replace the demo website domain name with your website domain name.
Replace path to script folder with your path to script folder.


Ensure that the Nginx configuration file works with the API domain and the main website domain.
$ service nginx restart
Visit the domain name on the browser to check.