Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 619 Bytes

README.md

File metadata and controls

15 lines (8 loc) · 619 Bytes

Sample Go app

Getting started

  1. Clone this repo using git clone https://github.com/tokopedia/gosample.git <your-project-name>.

  2. cd to and delete the existing git repository by running rm -rf .git.

  3. Initialize a new git repository with git init, git add . and git commit -m "Initial commit".

  4. Run dep ensure to install the dependencies. If you don't have dep, install using homebrew etc.

  5. Run go build and then ./ to start the local web server.

  6. Go to http://localhost:9000 and you should see the app running!