Skip to content
This repository has been archived by the owner on Jan 2, 2024. It is now read-only.

Latest commit

 

History

History
30 lines (22 loc) · 542 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 542 Bytes

Go service prototype

Running

Live reload is setup with modd, install with Homebrew:

brew install modd

Then run the service with modd from the repo root:

modd

The service will automatically restart on changes.

Routes

  • GET /healthcheck
  • GET /user/account (get account if authenticated)
  • POST /user/account (create a new account)
  • POST /auth/signin
  • POST /auth/signout
  • GET /projects
  • GET /projects/{projectID}
  • POST /projects/{projectID}
  • PUT /projects/{projectID}
  • DELETE /projects/{projectID}