aboutsummaryrefslogtreecommitdiff
path: root/.oh-my-zsh/plugins/hanami/README.md
diff options
context:
space:
mode:
authorMarvin Borner2020-03-16 23:33:42 +0100
committerMarvin Borner2020-03-16 23:33:42 +0100
commit0e9ddbb0bf0cd34500155ea4b03de2e2a38d8ab2 (patch)
tree719da1c7fe5dabb872fe9ff1582c39b55ccd488e /.oh-my-zsh/plugins/hanami/README.md
parente5d38956336ab1be954bdbd12808c5f98f8bd925 (diff)
Well I'm using Arch again
Diffstat (limited to '.oh-my-zsh/plugins/hanami/README.md')
-rw-r--r--.oh-my-zsh/plugins/hanami/README.md32
1 files changed, 0 insertions, 32 deletions
diff --git a/.oh-my-zsh/plugins/hanami/README.md b/.oh-my-zsh/plugins/hanami/README.md
deleted file mode 100644
index 3ac8def..0000000
--- a/.oh-my-zsh/plugins/hanami/README.md
+++ /dev/null
@@ -1,32 +0,0 @@
-# Hanami Plugin #
-This plugin adds convenient ways 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.
-
-## 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 |