The interface front-end build with Next.js and a tone of others libraries to construct the best SaaS for creating workflow of chatbot WhatsApp.
Note : This project uses pnpm as package manager. If you don't have it installed, you can do it by running the following command in your terminal :
$ npm install -g pnpm
First of all, you need to get the .env from the repository owner, and put it in the root of the project.
Install the dependencies with pnmp.
$ pnpm install$ pnpm run prepare$ pnpm devAnd go to http://localhost:3000 to see the app running.
To do this, you need to have a docker hub account. If it's not the case, you can create one clicking on the whale 🐋.
# Login to your docker hub
$ docker login-email
# Build the image
$ docker build -f Dockerfile -t whatsapp-chatbot-ui .
# Tag the image with the docker hub repository
$ docker tag whatsapp-chatbot-ui ssshuxper/whatsapp-chatbot-ui
# Push it to the remote
$ docker push ssshuxper/whatsapp-chatbot-uiTo learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.