Skip to content

Latest commit

 

History

History
51 lines (37 loc) · 2.79 KB

README.md

File metadata and controls

51 lines (37 loc) · 2.79 KB

issuesapp

Go Reference

Package issuesapp is a web frontend for an issues service.

Note, the canonical issue tracker for this package is currently hosted at https://dmitri.shuralyov.com/issues/github.com/shurcooL/issuesapp. It is implemented using this very package.

Installation

go get github.com/shurcooL/issuesapp

Development

This package relies on go generate directives to process and statically embed assets. For development only, you may need extra dependencies. You can build and run the package in development mode, where all assets are always read and processed from disk:

go build -tags=issuesappdev something/that/uses/issuesapp

When you're done with development, you should run go generate and commit that:

go generate github.com/shurcooL/issuesapp/...

Directories

Path Synopsis
assets Package assets contains assets for issuesapp.
cmd/githubissues githubissues is a simple test program for issuesapp that uses GitHub API-backed services.
common Package common contains common code for backend and frontend.
component Package component contains individual components that can render themselves as HTML.
frontend frontend script for issuesapp.
httpclient Package httpclient contains issues.Service implementation over HTTP.
httphandler Package httphandler contains an API handler for issues.Service.
httproute Package httproute contains route paths for httpclient, httphandler.

License