forked from AkkomaGang/akkoma
floatingghost
07a48b9293
Co-authored-by: FloatingGhost <hannah@coffee-and-dreams.uk> Reviewed-on: AkkomaGang/akkoma#371
20 lines
544 B
Elixir
20 lines
544 B
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Mix.Tasks.Pleroma.Search do
|
|
use Mix.Task
|
|
import Mix.Pleroma
|
|
|
|
@shortdoc "Manages elasticsearch"
|
|
|
|
def run(["import", "activities" | _rest]) do
|
|
start_pleroma()
|
|
|
|
Elasticsearch.Index.Bulk.upload(
|
|
Pleroma.Search.Elasticsearch.Cluster,
|
|
"activities",
|
|
Pleroma.Config.get([Pleroma.Search.Elasticsearch.Cluster, :indexes, :activities])
|
|
)
|
|
end
|
|
end
|