cli
cli copied to clipboard
Hanami command line
See [this discussion](https://github.com/hanami/cli/pull/211#discussion_r1685652762).
updates to Rack 3. one part of many gem updates [list of changes](https://github.com/hanami/router/pull/277) ## highlights adds rackup as an [explicit dependency](https://github.com/rack/rack/blob/main/UPGRADE-GUIDE.md#binrackup-rackserver-rackhandlerand--racklobster-were-moved-to-a-separate-gem) ---- bringing back a previously inadvertently closed [PR](https://github.com/hanami/cli/pull/283)
Previously, there was a line that was just `await assets.run()` that was not commented, and a commented block that was suggested for customization. As a result, it was possible that...
Builds on #288 After this is merged, I want to refactor some of this. I don't love the names `relative_parent_class` (gets the app/slice namespace prepended) and `absolute_parent_class`. Considering using qualified/unqualified...
This builds on #284, which must be merged first. Note that we can't get rid of the ActionContext yet because [it's used in `hanami/rspec`](https://github.com/hanami/rspec/blob/f42e9a1b664c1fee89e6fdcd7d79b6a7eca06735/lib/hanami/rspec/generators/action.rb#L20). It's hard to parse the changes...
We can run `git init`, since that's what most people do anyway. On the off-chance they don't use git, they can remove `.git/` and `.gitignore`. I don't think we need...
Hi everyone. when i run the command: ```bash HANAMI_ENV=test bundle exec hanami db create ``` I get error: ``` bundler: failed to load command: hanami (/builds/fake/vendor/ruby/ruby/3.3.0/bin/hanami) /usr/local/lib/ruby/3.3.0/open3.rb:534:in `spawn': No such...
Currently if the existence check for a database fails (for example due to whole database server being down or user not existing), Hanami CLI will anyway return information that the...
This addresses part of #230 by allowing to specify `--template` CLI option, which will create an ERb, HAML or Slim base template. For example: ``` hanami generate view users.sign_in.new --template...
Closes #181 @timriley I'm not sure if this message is good enough, if you have any suggestions please let me know, I made easy to change error message without having...