modulepackage
0.0.0-20220513204318-53341293c3a1
Repository: https://github.com/qbantek/to-localhost.git
Documentation: pkg.go.dev
# README
to-localhost
This barebones Go app helps developers to redirect a callback URL to localhost.
The idea was taken from https://tolocalhost.com/.
Running Locally
Make sure you have Go version 1.17 or newer and the Heroku CLI installed.
$ git clone https://github.com/qbantek/to-localhost.git
$ cd to-localhost
$ go build -o bin/to-localhost -v .
$ heroku local
Your app should now be running on localhost:5000.
Deploying to Heroku
$ heroku create
$ git push heroku master
$ heroku open
or