git-bug/webui
2019-03-31 21:53:48 +02:00
..
public github: also pull users email 2018-10-07 18:27:23 +02:00
src webui: Rework timeline style 2019-03-30 20:50:59 +01:00
.eslintrc webui: Format everything with prettier 2018-08-19 23:14:45 +02:00
.gitignore make git-bug go gettable without having to commit the builded webUI 2018-08-06 14:18:55 +02:00
.prettierrc webui: Format everything with prettier 2018-08-19 23:14:45 +02:00
debug_assets.go invert the behavior of the build flag for the webui 2018-09-02 00:06:50 +02:00
Makefile webui: Format everything with prettier 2018-08-19 23:14:45 +02:00
pack_webui.go invert the behavior of the build flag for the webui 2018-09-02 00:06:50 +02:00
package-lock.json webui: Upgrade dependencies 2019-03-30 21:40:56 +01:00
package.json webui: Upgrade dependencies 2019-03-30 21:40:56 +01:00
packed_assets.go webui: pack it 2019-03-31 21:53:48 +02:00
Readme.md docs & cleaning 2018-09-16 13:50:53 +02:00

git-bug rich web UI

How to develop

  1. Compile the go binary
    • run make in the root directory
  2. Run the GraphQL backend on the port 3001
    • ./git-bug webui -p 3001
  3. Run the hot-reloadable development WebUI
    • run npm start in the webui directory

The development version of the WebUI is configured to query the backend on the port 3001. You can now live edit the js code and use the normal backend.

Bundle the web UI

Once the webUI is good enough for a new release, run make pack-webui from the root directory to bundle the compiled js into the go binary.