This is the source code for a chat app that uses subscriptions in Vue-apollo and Hasura GraphQL Engine.
docker-compose up -d
After starting the container, access to http://localhost:8000/console.
In hasura console, create messasges table. Like the following sentence.
| column | type |
|---|---|
| id | Integer(auto-increment) |
| user_id | Text |
| icon_color | Text |
| content | Text |
Install dependencies.
yarn install
Run project
yarn run serve
Access the URL displayed on the console and send message.

