Right now, the setup script in src/setup uses all sorts of nice Clack spinner prompts to show a nice UI. Whereas the hydration script in src/hydrate ... doesn't. So that's unfortunate.
Let's have hydration also show the same kind of nice spinner UI as setup.
Additional Info
I suspect there'll be some shared logic from src/setup newly being used in src/hydration as a result of this change. I think it'd be good to make a shared directory inside src for that stuff, rather than having src/hydration import from within src/setup. Which means
Bug Report Checklist
main
branch of the repository.Overview
Right now, the setup script in
src/setup
uses all sorts of nice Clack spinner prompts to show a nice UI. Whereas the hydration script insrc/hydrate
... doesn't. So that's unfortunate.Let's have hydration also show the same kind of nice spinner UI as setup.
Additional Info
I suspect there'll be some shared logic from
src/setup
newly being used insrc/hydration
as a result of this change. I think it'd be good to make a shared directory insidesrc
for that stuff, rather than havingsrc/hydration
import from withinsrc/setup
. Which means