# simple-go-web-app **Repository Path**: cloud-native-java/simple-go-web-app ## Basic Information - **Project Name**: simple-go-web-app - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-08-08 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Simple go web app ================= This is a simple demonstration web app written in Go (martini framework) that easily runs on Cloud Foundry. Locally ------- ``` go run main.go ``` Or to set the message: ``` MESSAGE="this is the message to display" go run main.go ``` Cloud Foundry ------------- ``` cf push myapp --no-start cf set-env myapp MESSAGE "this is myapp" cf start myapp ```