breakout-dyno-cccc9687c6f8.staging.herokuappdev.com Open in urlscan Pro
52.45.44.225  Public Scan

URL: https://breakout-dyno-cccc9687c6f8.staging.herokuappdev.com/
Submission Tags: phishingrod
Submission: On January 15 via api from DE — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

 * Home
 * How Heroku Works
 * Getting Started Guides
   * Getting Started with Ruby on Heroku
   * Getting Started with Node on Heroku
   * Getting Started with PHP on Heroku
   * Getting Started with Python on Heroku
   * Getting Started with Java on Heroku
   * Getting Started with Go on Heroku
   * Getting Started with Clojure on Heroku
   * Getting Started with Scala on Heroku
   * 
   * Getting Started on Heroku with Heroku Connect
   * Getting Started with Ruby on Heroku (Microsoft Windows)

 * Heroku Dev Center


GETTING STARTED WITH GO ON HEROKU

This is a sample Go application deployed to Heroku. It's a reasonably simple app
- but a good foundation for understanding how to get the most out of the Heroku
platform.

Getting Started with Go Source on GitHub
To deploy your own copy, and learn the fundamentals of the Heroku platform, head
over to the Getting Started with Go on Heroku tutorial.

--------------------------------------------------------------------------------


HOW THIS SAMPLE APP WORKS

 * This app was deployed to Heroku, either using Git or by using Heroku Button
   on the repository.
 * When Heroku received the source code it used the go tool chain to compile the
   application along with any vendored dependencies and created a deployable
   slug.
 * The platform then spins up a dyno, a lightweight container that provides an
   isolated environment in which the slug can be mounted and executed.
 * You can scale your app, manage it, and deploy over 150 add-on services, from
   the Dashboard or CLI.


NEXT STEPS

 * If you are following the Getting Started guide, then please head back to the
   tutorial and follow the next steps!
 * If you deployed this app by deploying the Heroku Button, then in a command
   line shell, run:
    * git clone https://github.com/heroku/go-getting-started - get the code into
      your local environment
    * cd go-getting-started
    * go install . - compile the binary and install it into your $GOPATH/bin
    * heroku git:remote -a <your-app-name> - associate the Heroku app with the
      repository
    * You'll now be set up to run the app locally, or deploy changes to Heroku


HELPFUL LINKS

 * Heroku
 * Heroku Dev Center
 * Getting Started with Go on Heroku
 * Heroku Go Support

Please do work through the Getting Started guide, even if you do know how to
build such an application. The guide covers the basics of working with Heroku,
and will familiarize you with all the concepts you need in order to build and
deploy your own apps.