github.com/kentlouisetonino/GoBackend

My laboratory for experimenting Go.


Keywords
backend-development, bash, go, golang, linux
License
MIT
Install
go get github.com/kentlouisetonino/GoBackend

Documentation

$\textnormal{GoPlayground}$

  • A Go server playground that integrates with different technologies.
# API URL.
http://localhost:11000/api

# Health check route.
GET /health


$\textnormal{Local Development}$

  • Create a .env file.
# Environment variables.
PORT=11000
  • Run the following commands below.
# Change permission and make it executable.
sudo chmod +x run-build.sh
sudo chmod +x run.sh


# Run the build.
./run-build.sh

# Run the server.
./run.sh