Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 539 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 539 Bytes

djin-server

This is the gRPC server implementation of the website djin.dev written in Go.

The server can be accessed under port localhost:8080 when developing locally

Frequently used commands

Prerequisites: Go

Running the server

Run this server in listening mode.

go run ./...

Formatting

Auto-format all the code for this repository.

go fmt ./...

Tests

Run all unit tests for this server.

go test ./...