berrypod/priv/repo/seeds.exs

28 lines
763 B
Elixir
Raw Normal View History

# Script for populating the database. You can run it as:
#
# mix run priv/repo/seeds.exs
#
# Inside the script, you can read and write to any of your
# repositories directly:
#
# Berrypod.Repo.insert!(%Berrypod.SomeSchema{})
#
# We recommend using the bang functions (`insert!`, `update!`
# and so on) as they will fail if something goes wrong.
alias Berrypod.{Settings, Site}
# Set default theme settings (Studio preset)
IO.puts("Setting up default theme settings...")
{:ok, _theme} = Settings.apply_preset(:studio)
IO.puts("✓ Default theme settings applied (Studio preset)")
# Seed default navigation and social links
IO.puts("Setting up default site content...")
Site.seed_defaults()
IO.puts("✓ Default navigation and social links created")