Open
Description
Problem
- When Misk consumers have Misk checked out along with their service, an attempt to load the Admin Dashboard often fails.
- The failure is because the dashboard looks for locally built web artifacts (
web/tabs/{tab-slug}/lib
) inclasspath://
and unless the developer has done a web build (and if they're not working on web, they won't have), the web artifacts won't be present.
Approaches
If the web tabs and Admin Dashboard Module (less the bound web actions) are pulled into a separate repo (ie. misk-tabs
or misk-admin-dashboard
), then anyone hacking on Misk can still access the dashboard because those web artifacts are served from the misk-tabs
Jar which isn't checked out.
misk-tabs
without the AdminDashboardModule: the repo only has web code wrapped in a jar. It can be depended on by Misk (though as a workaround until Misk has publicly building artifacts, Skim can depend on it).misk-tabs
with the AdminDashboardModule: this repo has the web code and the AdminDashboardModule and therefore depends on Misk. Since intrinsically the Misk dashboard depends onmisk-tabs
, this leads to an unintuitive circular dependency where the consuming service has to separately includemisk
andmisk-tabs
.- Check in built web artifacts into misk repo so they're always present (not ideal, messy git commit history)
- Force all people hacking on misk to have correct npm/node versions installed so we can add web builds to the misk jar task (excess additional work on developers / added time to builds)
- Bring back building web artifacts in Docker containers (really do not want to do this, carries most of the same problems as 4 wrt added time to builds).
Recommendation
Option 1 provides the most straightforward dependency graph augmentation without any circular dependencies of misk
depending on misk-tabs
that depends on misk
.
Action Plan
- Create basic
misk-tabs
repo that has jar building infrastructure (gradle, directory structure...) - Move over existing tabs in misk (config, loader, web-actions)
- Set Skim to depend on
misk-tabs
- Remove tab code from
misk
- Add documentation for why web code lives in a separate repo
Please comment feedback below!