| 1 | # isl-server |
| 2 | |
| 3 | This is the server-side code for Interactive Smartlog. It handles |
| 4 | running commands and reporting information to the UI. |
| 5 | |
| 6 | The server code is bundled with rollup directly into the entry points using it. |
| 7 | |
| 8 | Currently, the only entry point for the server is `proxy/run-proxy.ts`, |
| 9 | but other entry points in the future will include the vscode extension host. |
| 10 | |
| 11 | See isl/README.md for more information. |
| 12 | |
| 13 | ## graphql codegen |
| 14 | |
| 15 | Types and queries used to interact with GitHub is generated using `yarn codegen`. |
| 16 | Re-run this any time you change `src/github/queries`. |
| 17 | |