I made vantage years ago, to scratch an itch I had with using Docker for dev work. I have a bunch of bash scripts in my repo for; spinning up the dev server, running DB migrations, running tests then deploying, etc. etc.<p>vantage manages the environment for these scripts. Meaning that I can do:<p><pre><code> vantage db migrate
</code></pre>
For my local DB, then:<p><pre><code> vantage -e production db migrate
</code></pre>
For my production one.<p>Recently I added bash completion, so I thought I'd post here to see what other people thought.<p>Let me know :)