You can also do it all completely within mix by writing a little mix task that sets the mix environment even then you could have an alias set it to dev, reset, then set it to test and reset again if you want for a meta-resetter.
I would personally still just do:
mix ecto.reset
MIX_ENV=test mix ecto.reset
Maybe alias it like:
alias ecto-reset='mix ecto.reset; MIX_ENV=test mix ecto.reset'
Or via the New-Alias command in powershell however it works.
Yes I work on elixir on Windows at work (debian at home) too… >.>
I installed bash though.






















