to-localhost

This barebones Go app helps developers to redirect a callback URL to localhost.

UNLICENSE License

Stars
0

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