Skip to content

jctbitly/octohack-back

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

octohack-back

October '18 GCP Hack Week - Back End!

Running the server

Local

go run main.go

Docker

docker build -t octohack-back .
docker run -d -p 8080:8080 octochack-back

Requests

The server will run on http://localhost:8080/ by default.

User

GET /users/:username

{
    "id": 1,
    "username": "user",
    "email": "[email protected]"
}

POST /users with:

{
    "username": "user",
    "email": "[email protected]"
}

About

October '18 GCP Hack Week - Back End!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 91.4%
  • Dockerfile 8.6%