Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/green-api/whatsapp-demo-chatbot-java
Java demo chatbot for WhatsApp
https://github.com/green-api/whatsapp-demo-chatbot-java
green-api whatsapp whatsapp-api whatsapp-bot whatsapp-chatbot whatsapp-chatbot-java
Last synced: 24 days ago
JSON representation
Java demo chatbot for WhatsApp
- Host: GitHub
- URL: https://github.com/green-api/whatsapp-demo-chatbot-java
- Owner: green-api
- License: other
- Created: 2024-01-18T05:02:13.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-02-29T18:52:37.000Z (10 months ago)
- Last Synced: 2024-04-21T17:20:36.243Z (8 months ago)
- Topics: green-api, whatsapp, whatsapp-api, whatsapp-bot, whatsapp-chatbot, whatsapp-chatbot-java
- Language: Java
- Homepage: https://green-api.com/en/docs/chatbots/
- Size: 3.1 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Docker.md
Awesome Lists containing this project
README
### Building and running your application
When you're ready, start your application by running:
`docker compose up --build`.### Deploying your application to the cloud
First, build your image, e.g.: `docker build --tag myapp:v0.0.1 .`.
If your cloud uses a different CPU architecture than your development
machine (e.g., you are on a Mac M1 and your cloud provider is amd64),
you'll want to build the image for that platform, e.g.:
`docker build --platform=linux/amd64 -t myapp:v0.0.1 .`.Then, push it to your registry, e.g. `docker push myregistry.com/myapp`.
Or run it local locally: `docker run myapp:v0.0.1`Consult Docker's [getting started](https://docs.docker.com/go/get-started-sharing/)
docs for more detail on building and pushing.