Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zjx20/catwalk_relayer
https://github.com/zjx20/catwalk_relayer
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/zjx20/catwalk_relayer
- Owner: zjx20
- Created: 2021-07-05T17:05:14.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-07-05T17:06:22.000Z (over 3 years ago)
- Last Synced: 2024-10-28T13:32:12.623Z (2 months ago)
- Language: Go
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
catwalk_relayer
===============# Deploy To IBM Cloud Foundry
HomePage: https://cloud.ibm.com/cloudfoundry/overview
Getting Start: https://cloud.ibm.com/docs/cloud-foundry-public?topic=cloud-foundry-public-getting-started-go
Docs: https://docs.cloudfoundry.org/devguide/index.html
Note: not accessible directly
Deploy:
```bash
cd catwalk_relayeribmcloud cf login
# replace to the real one
ibmcloud cf create-app-manifest
ibmcloud cf push -c "catwalk_relayer -upstream example.com:80 -ws true"
```# Deploy To Heroku
HomePage: https://dashboard.heroku.com/
Getting Start: https://devcenter.heroku.com/articles/getting-started-with-go
Deploy:
```bash
heroku loginheroku git:remote -a
heroku config:set UPSTREAM=youserver.com:1234 WS=true WS_PATH=/chat -agit push heroku master
```