rename project from SimpleshopTheme to Berrypod

All modules, configs, paths, and references updated.
836 tests pass, zero warnings.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jamey
2026-02-18 21:23:15 +00:00
parent c65e777832
commit 9528700862
300 changed files with 23932 additions and 1349 deletions

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.CreateUsersAuthTables do
defmodule Berrypod.Repo.Migrations.CreateUsersAuthTables do
use Ecto.Migration
def change do

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.CreateSettings do
defmodule Berrypod.Repo.Migrations.CreateSettings do
use Ecto.Migration
def change do

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.CreateImages do
defmodule Berrypod.Repo.Migrations.CreateImages do
use Ecto.Migration
def change do

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.AddImageMetadataAndOban do
defmodule Berrypod.Repo.Migrations.AddImageMetadataAndOban do
use Ecto.Migration
def change do

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.CreateProviderConnections do
defmodule Berrypod.Repo.Migrations.CreateProviderConnections do
use Ecto.Migration
def change do

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.CreateProducts do
defmodule Berrypod.Repo.Migrations.CreateProducts do
use Ecto.Migration
def change do

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.CreateProductImages do
defmodule Berrypod.Repo.Migrations.CreateProductImages do
use Ecto.Migration
def change do

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.CreateProductVariants do
defmodule Berrypod.Repo.Migrations.CreateProductVariants do
use Ecto.Migration
def change do

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.AddImageIdToProductImages do
defmodule Berrypod.Repo.Migrations.AddImageIdToProductImages do
use Ecto.Migration
def change do

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.CreateOrders do
defmodule Berrypod.Repo.Migrations.CreateOrders do
use Ecto.Migration
def change do

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.AddEncryptedValueToSettings do
defmodule Berrypod.Repo.Migrations.AddEncryptedValueToSettings do
use Ecto.Migration
def change do

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.AddFulfilmentFieldsToOrders do
defmodule Berrypod.Repo.Migrations.AddFulfilmentFieldsToOrders do
use Ecto.Migration
def change do

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.AddErrorTracker do
defmodule Berrypod.Repo.Migrations.AddErrorTracker do
use Ecto.Migration
def up, do: ErrorTracker.Migration.up(version: 5)

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.AddCachedProductFields do
defmodule Berrypod.Repo.Migrations.AddCachedProductFields do
use Ecto.Migration
def change do

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.CreateProductsSearch do
defmodule Berrypod.Repo.Migrations.CreateProductsSearch do
use Ecto.Migration
def up do

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.CreateShippingRates do
defmodule Berrypod.Repo.Migrations.CreateShippingRates do
use Ecto.Migration
def change do

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.AddShippingCostToOrders do
defmodule Berrypod.Repo.Migrations.AddShippingCostToOrders do
use Ecto.Migration
def change do

View File

@@ -1,4 +1,4 @@
defmodule SimpleshopTheme.Repo.Migrations.AddColorToProductImages do
defmodule Berrypod.Repo.Migrations.AddColorToProductImages do
use Ecto.Migration
def change do

View File

@@ -5,12 +5,12 @@
# Inside the script, you can read and write to any of your
# repositories directly:
#
# SimpleshopTheme.Repo.insert!(%SimpleshopTheme.SomeSchema{})
# 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 SimpleshopTheme.Settings
alias Berrypod.Settings
# Set default theme settings (Studio preset)
IO.puts("Setting up default theme settings...")