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.
- Host: GitHub
- URL: https://github.com/kentlouisetonino/go-backend
- Owner: kentlouisetonino
- License: mit
- Created: 2024-04-27T15:05:45.000Z (12 months ago)
- Default Branch: develop
- Last Pushed: 2024-11-18T00:48:03.000Z (5 months ago)
- Last Synced: 2024-11-18T01:35:36.240Z (5 months ago)
- Topics: backend-development, bash, go, golang, linux
- Language: Go
- Homepage:
- Size: 14.4 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
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
```