diff options
author | 2024-03-25 16:43:09 +0530 | |
---|---|---|
committer | 2024-03-25 16:43:09 +0530 | |
commit | a62114c91f2070c8c8453d117f3d81dc113e41ff (patch) | |
tree | f266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/hanami | |
parent | af120ab348f2e1a5a39dec035ed9dcf84189a64e (diff) | |
download | dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2 dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip |
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/hanami')
-rw-r--r-- | zsh/oh-my-zsh/plugins/hanami/README.md | 45 | ||||
-rw-r--r-- | zsh/oh-my-zsh/plugins/hanami/hanami.plugin.zsh | 19 |
2 files changed, 0 insertions, 64 deletions
diff --git a/zsh/oh-my-zsh/plugins/hanami/README.md b/zsh/oh-my-zsh/plugins/hanami/README.md deleted file mode 100644 index c9e09f4..0000000 --- a/zsh/oh-my-zsh/plugins/hanami/README.md +++ /dev/null @@ -1,45 +0,0 @@ -# Hanami Plugin - -This plugin adds convenient aliases to work with [Hanami](https://hanamirb.org/) via console. -It's inspired by Rails plugin, so if you've used it, you'll feel like home. - -To use it, add `hanami` to the plugins array in your zshrc file: - -```zsh -plugins=(... hanami) -``` - -## Usage - -For example, type `hc` into your console when you're within Hanami project directory to run -the application console. Have a look at available shortcuts below. You can read more about -these commands [on the official website](https://hanamirb.org/guides/command-line/applications/). - -## Aliases - -| Alias | Command | Description | -|-------|-----------------------------|---------------------------------------------------------| -| HED\* | `HANAMI_ENV=development` | Set environment variable HANAMI_ENV to development | -| HEP\* | `HANAMI_ENV=production` | Set environment variable HANAMI_ENV to production | -| HET\* | `HANAMI_ENV=test` | Set environment variable HANAMI_ENV to test | -| hc | `hanami console` | Run application console | -| hd | `hanami destroy` | Remove specified hanami resource | -| hg | `hanami generate` | Create specified hanami resource | -| hgm | `hanami generate migration` | Create migration file | -| hs | `hanami server` | Launch server with hanami application | -| hsp | `hanami server -p` | Launch server with specified port | -| hr | `hanami routes` | List application routes | -| hdc | `hanami db create` | Create application database | -| hdd | `hanami db drop` | Delete application database | -| hdp | `hanami db prepare` | Prepare database for the current environment | -| hda | `hanami db apply` | Recreates a fresh schema after migrations (destructive) | -| hdv | `hanami db version` | Print current database version | -| hdrs | `hdd && hdp` | Drop and recreate application database | -| hdtp | `HET hdp` | Actualize test environment database | -| hrg | `hr | grep` | Grep hanami routes with specified pattern | - -\* You should use these at the beginning of a command, for example: - -```console -$ HED hdd # equivalent to 'HANAMI_ENV=development hanami db drop' -``` diff --git a/zsh/oh-my-zsh/plugins/hanami/hanami.plugin.zsh b/zsh/oh-my-zsh/plugins/hanami/hanami.plugin.zsh deleted file mode 100644 index 42143b4..0000000 --- a/zsh/oh-my-zsh/plugins/hanami/hanami.plugin.zsh +++ /dev/null @@ -1,19 +0,0 @@ -alias HED='HANAMI_ENV=development ' -alias HEP='HANAMI_ENV=production ' -alias HET='HANAMI_ENV=test ' - -alias hc='hanami console' -alias hd='hanami destroy' -alias hg='hanami generate' -alias hgm='hanami generate migration' -alias hs='hanami server' -alias hsp='hanami server -p' -alias hr='hanami routes' -alias hdc='hanami db create' -alias hdd='hanami db drop' -alias hdp='hanami db prepare' -alias hda='hanami db apply' -alias hdv='hanami db version' -alias hdrs='hdd && hdp' -alias hdtp='HET hdp' -alias hrg='hr | grep' |