All Projects → burke → minidev

burke / minidev

Licence: MIT license
Like dev, only lots worse!

Programming Languages

ruby
36898 projects - #4 most used programming language
shell
77523 projects
Nix
1067 projects

minidev

minidev is a reeaaaaallly limited public replacement for Shopify's internal dev tool.

Where most of dev is concerned with dev up, which provisions dependencies and various other things, there's a little bit of accessory function that's pretty easy to replicate, which is what's been done here.

minidev implements:

  • dev cd
  • dev clone
  • Project-local commands (dev {build,style,console,server,test,etc.}).

minidev does not:

  • Implement dev up at all
  • have adequate help
  • try very hard to prevent randomly crashing
  • be good

Use minidev by adding source /path/to/minidev/dev.sh to your shell config.

Everything this does is far more limited than dev, including that it won't self-update.

If you want to use the same dotfiles at home and at work, you may enjoy something like:

if [ -f /opt/dev/dev.sh ]; then
  source /opt/dev/dev.sh
elif [ -f ~/src/github.com/burke/minidev/dev.sh ]; then
  source ~/src/github.com/burke/minidev/dev.sh
fi
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].