# cloud-polymer-go **Repository Path**: mirrors_googlesamples/cloud-polymer-go ## Basic Information - **Project Name**: cloud-polymer-go - **Description**: Sample App Engine application with Go, Cloud Endpoints, and Polymer - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-12-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Polymer Gopher ============== This project is a sample web application hosted on [App Engine][1] composed of two [App Engine modules][2]: - a frontend written using [Polymer][3] - a backend written in [Go][4] ## Running locally To run this application locally install the [Go App Engine SDK][7] and then execute: ``` $ goapp serve dispatch.yaml frontend/app.yaml backend/app.yaml ``` ## Deploying the app on the cloud And to deploy it: - Create a new Google Cloud project on the [Google Cloud Console][8] - Write your project id in every single `yaml` file: ```yaml application: your-application-id ``` - Then execute ``` $ goapp deploy backend/app.yaml $ goapp deploy frontend/app.yaml $ appcfg.py update_dispatch . ``` Then visiting http://your-project-id.appspot.com should show you the application running on the cloud. The documentation generated for the Go backend is available on [godoc.org][10]. [1]: https://cloud.google.com/appengine/docs [2]: https://cloud.google.com/appengine/docs/go/modules [3]: https://www.polymer-project.org [4]: https://golang.org [7]: https://cloud.google.com/appengine/downloads [8]: https://console.developers.google.com [9]: https://console.developers.google.com [10]: http://godoc.org/github.com/googlesamples/cloud-polymer-go/backend ### Disclaimer This is not an official Google product (experimental or otherwise), it is just code that happens to be owned by Google.