如何在凤凰堆栈中运行Elixir文件

问题描述 投票:1回答:1

我是万灵药生态系统的新手。我的Elixir / Phoenix应用程序中有一个导入脚本,当我尝试从命令行运行该脚本时,它不起作用,因为phoenix堆栈未使用我的命令加载。

这是我要运行的内容:

elixir lib/mix/tasks/import/users.ex

我得到:** (CompileError) lib/mix/tasks/import/users.ex:7: module Mix.Ecto is not loaded and could not be found

有没有办法告诉我的命令加载堆栈?

这是我的users.ex导入

defmodule Mix.Tasks.Import.Users do
  @moduledoc """
    Import predefined users.
  """

  use Mix.Task
  import Mix.Ecto
  alias App.Shield.Resources.User

  @shortdoc "Import users"
  def run(args) do
    repos = parse_repo(args)

    Enum.each repos, fn repo ->
      Mix.shell.info "=== User Import (CSV) ==="

      ensure_repo(repo, args)
      ensure_started(repo, [])

      static_path = Application.app_dir(:corsair, "priv/static")

      File.stream!("#{static_path}/User.csv")
      |> CSV.decode(headers: true)
      |> Task.async_stream(Mix.Tasks.Import.Users, :process_csv_row, [repo])
      |> Enum.to_list()
    end
  end

  def process_csv_row(row, repo) do
    user = %{
      first_name: row["first_name"],
      last_name: row["last_name"],
      email: row["email"]
    }

    changeset = User.registration_on_subdomain_changeset(%User{}, user)

    case repo.insert(changeset) do
      {:ok, user} ->
        Bunt.puts [:color83, "User #{user.first_name} #{user.last_name} created"]
      {:error, changeset} ->
        Bunt.puts [:color197, "Problem with #{row["email"]}"]
        IO.inspect changeset.errors
    end
  end
end
elixir phoenix-framework
1个回答
1
投票

我终于在文档中找到了如何运行自定义任务。就我而言,是。

mix import.users

我尝试过mix tasks.import.users,但是没有必要使用tasks关键字

这里是文档,以防万一]

https://hexdocs.pm/phoenix/phoenix_mix_tasks.html#creating-our-own-mix-tasks

© www.soinside.com 2019 - 2024. All rights reserved.