An open API service indexing awesome lists of open source software.

https://github.com/kentlouisetonino/go-backend

A laboratory for experimenting with backend in Go.
https://github.com/kentlouisetonino/go-backend

backend-development bash go golang linux

Last synced: 5 months ago
JSON representation

A laboratory for experimenting with backend in Go.

Awesome Lists containing this project

README

        

## GoBackend

> - A Go server playground that integrates with different technologies.

```bash
# API URL.
http://localhost:11000/api

# Health check route.
GET /health
```




## Setup

> - Create a `.env` file.

```sh
# Environment variables.
PORT=11000
```

> - Run the following commands below.

```bash
# 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
```