Simple webhook for Telegram, use Ktor (a web framework in Kotlin). Ready for GAE (Google App Engine)
Sample project for Ktor running under Google App Engine standard infrastructure.
- Java SDK 8 or later
- Apache Maven
- Google Cloud SDK
Run this project under local dev mode with:
gradle appengineRun
And navigate to http://localhost:8080/ to see the sample home page.
Use Google Cloud SDK to create application similarly to Google App Engine for Java Quickstart:
Install all the Google Cloud components and login into your account:
gcloud init
gcloud components install app-engine-java
gcloud components update
gcloud auth application-default login
Create project and application:
gcloud projects create <unique-project-id> --set-as-default
gcloud app create
Then deploy your application with:
gradle appengineDeploy
You can checkout deployed version of this sample application at https://cvdicv.appspot.com
You'll need to remove the deployment
block from application.conf
, otherwise when running on Google App Engine the Servlet
will not get it's environment configured correctly causing the Google Cloud API's to fail.
Copyright (c) 2019 Omar Miatello
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.