How to populate a database in Phoenix/Elixir on a server?

570 Views Asked by At

I'm using edeliver. How can I insert seeds -- populate a database -- in Phoenix/Elixir on a server? I'm aware of a single way which is run Phoenix console. Is it how it's supposed to be? I don't want a method which should work to your opion, but which haven't tried or tried but a long time ago.

If there's another way without involving edeliver, that's ok as well.

mix run priv/repo/seeds.exs doesn't work on a server.

1

There are 1 best solutions below

4
On

Check out the file ./priv/repo/seeds.exs. You can write whatever you want in there and execute the script with

mix run priv/repo/seeds.exs 

EDIT: With edeliver, people have been reporting success with the following method https://github.com/boldpoker/edeliver/issues/116:

So you could connect to your node using bin/your_app remote_console and type something like:

:code.priv_dir(:your_app) |> Path.join("repo/seeds.exs") |> Code.require_file()

to run the seeds file.

And also:

It worked, but I had to replace "Code.require_file()" with "Code.eval_file()". "require_file" would just freeze the console, no error shown !