Boilerplate for a project holding models, etc. shared across multiple Dart projects.
Example setup:
Run:
angel init
Structure:
foo/
foo/
foo_server/
foo_mobile/
foo_web/
Where:
foo/
is the "shared" project that contains things like model files or validatorsfoo_server/
is also created byangel init
foo_mobile/
is a Flutter projectfoo_web/
is a Dart web project, perhaps created viastagehand
.
In this case, the boilerplate_shared
will create foo/
.