Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 892 Bytes

README.md

File metadata and controls

57 lines (37 loc) · 892 Bytes

Friendly Robot

Friendly robot is a simple Gmail client application that syncs your Gmail account with a virtual assistant that suggests replies to your emails.

Installation

Nodejs

Check if you have Nodejs and Yarn installed

node -v
yarn -v

Install dependencies

yarn

Start the application

Development
yarn start
Production
yarn start:prod

Docker

Check if you have installed Docker and Docker Compose

docker -v
docker-compose -v

Build and run docker image

Development
docker-compose -f docker-compose-dev.yml up --build
Production
docker-compose -f docker-compose-prod.yml up --build