I have included terminator in my mix.exs
When I do
$ mix terminator.setup
** (Mix) Could not find migrations directory "deps/terminator/priv/repo/migrations"
for repo Terminator.Repo.
This may be because you are in a new project and the
migration directory has not been created yet. Creating an
empty directory at the path above will fix this error.
If you expected existing migrations to be found, please
make sure your repository has been properly configured
and the configured path exists.
It seems the priv folder is not included
$ tree deps/terminator/
deps/terminator/
├── hex_metadata.config
├── lib
│ ├── mix
│ │ └── tasks
│ │ ├── terminator.ex
│ │ └── terminator.setup.ex
│ ├── terminator
│ │ ├── ability.ex
│ │ ├── application.ex
│ │ ├── performer.ex
│ │ ├── performers_entities.ex
│ │ ├── performers_roles.ex
│ │ ├── registry.ex
│ │ ├── repo.ex
│ │ └── role.ex
│ └── terminator.ex
├── mix.exs
└── README.md
I have included terminator in my
mix.exsWhen I do
It seems the priv folder is not included