1c47473c11
Addresses deprecation mentioned at https://hexdocs.pm/ecto/Ecto.Repo.html#c:init/2
36 lines
772 B
Elixir
36 lines
772 B
Elixir
defmodule MusicLibrary.Repo do
|
|
use Ecto.Repo,
|
|
otp_app: :music_library,
|
|
adapter: Ecto.Adapters.SQLite3
|
|
|
|
def extension_path(name) do
|
|
[arch | _rest] =
|
|
:erlang.system_info(:system_architecture)
|
|
|> List.to_string()
|
|
|> String.split("-")
|
|
|
|
{_, os} = :os.type()
|
|
|
|
platform =
|
|
case {os, arch} do
|
|
{:darwin, "x86_64"} -> "darwin-amd64"
|
|
{:darwin, "aarch64"} -> "darwin-aarch64"
|
|
{:linux, "x86_64"} -> "linux-amd64"
|
|
_other -> raise "Unsupported OS or platform"
|
|
end
|
|
|
|
extension =
|
|
case os do
|
|
:darwin -> "dylib"
|
|
:linux -> "so"
|
|
end
|
|
|
|
Path.join([
|
|
:code.priv_dir(:music_library),
|
|
"sqlite_extensions",
|
|
platform,
|
|
"#{name}.#{extension}"
|
|
])
|
|
end
|
|
end
|