Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 568 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 568 Bytes

chatex-server

Find API Docs here

Requirements

  • go > 1.12

To run the server locally run (in the server's root directory) go run cmd/main.go OR spin, the server will start at PORT 8080 by default

NOTE

  • Vendoring is enabled, but the /vendor directory is not being commited to git, to avoid large size commits
  • On installing a new dependency or when pulling the code, run
    • go mod vendor (to avoid Inconsistent vendoring)
    • go mod download (not tried)