1.0.1 • Published 5 years ago

drails v1.0.1

Weekly downloads
7
License
MIT
Repository
github
Last release
5 years ago

drails

cli for docker compose and rails users, this cli helps with running your rails commands like db:drop or generate model inside your docker web service container. Your rails service on the docker compose needs to be named "web"

oclif Version Downloads/week License

Prerequisite

  • docker installed
  • docker-compose installed
  • Your rails service on the docker-compose.yml needs to be named "web"

Install

$ yarn add drails
$ # or
$ yarn global add drails

Usage

$ drails db:create
$ drails drails g model User
$ drails db:migrate

then you could start up your docker compose services

$ docker-compose up