Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tadast/pinggun
Ping URLs every 30mins
https://github.com/tadast/pinggun
Last synced: 15 days ago
JSON representation
Ping URLs every 30mins
- Host: GitHub
- URL: https://github.com/tadast/pinggun
- Owner: tadast
- Created: 2015-05-04T13:19:17.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-04T13:28:56.000Z (over 9 years ago)
- Last Synced: 2024-10-03T20:22:02.066Z (about 1 month ago)
- Language: Go
- Size: 2.4 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PingGun
Pings URLs every 30mins
## Running locally
```
git clone [email protected]:tadast/pinggun.git
cd pinggun
go get
PORT=5000 TARGETS="http://localhost:5000,http://example.com" pinggun
```## Deploying on Heroku
```
heroku create -b https://github.com/kr/heroku-buildpack-go.git
heroku config:set TARGETS="http://example.com,http://example2.com"
git push heroku master
heroku logs --tail
```## Licence
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.