Giter Club home page Giter Club logo

gin-starter's Introduction

Gin Starter

A web API boilerplate for Gin.

Run

Docker

  1. Build the image.

    docker build  -t myapp .
  2. Start a container of the newly built image.

    docker run --rm -p 8000:8000 my-go-api

Local

  1. Run the app.

    go run .
  2. Navigate to localhost:8000

Helpful Commands

  • Request the data from the / (Home) endpoint. This endpoint is public to anyone and does not require a JWT token to be sent in the Header of the request.

    curl --location --request GET "http://localhost:8000" | jq
  • Get the data from the api/v1/pokemon endpoint. This endpoint is private and can only be accessed with a valid JWT token sent in the Header of the request. Replace <REPLACE_WITH_YOUR_ACCESS_TOKEN> with your access token, which can be created for testing the workflow at Auth0 > Applications > APIs > Test > CURL.

    curl --location \
        --request GET "http://localhost:8000/" \
        --header "Authorization: Bearer <REPLACE_WITH_YOUR_ACCESS_TOKEN>" | jq

Resouces

  • jwt.io
  • Auth0 docs

gin-starter's People

Contributors

bryborge avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.