27 lines
493 B
Markdown
27 lines
493 B
Markdown
|
# Go Vanity URLs
|
||
|
|
||
|
Go Vanity URLs is a simple App Engine Go app that allows you
|
||
|
to set custom import paths for your Go packages.
|
||
|
|
||
|
## Quickstart
|
||
|
|
||
|
Get the application:
|
||
|
```
|
||
|
go get -u -d github.com/GoogleCloudPlatform/govanityurls
|
||
|
cd $(go env GOPATH)/github.com/GoogleCloudPlatform/govanityurls
|
||
|
```
|
||
|
|
||
|
Edit `app.yaml` with your domain and git repo information.
|
||
|
|
||
|
```
|
||
|
env_variables:
|
||
|
DOMAIN: go.grpcutil.org
|
||
|
REPO: https://github.com/rakyll/grpcutil
|
||
|
```
|
||
|
|
||
|
Deploy the app:
|
||
|
|
||
|
```
|
||
|
$ gcloud app deploy
|
||
|
```
|