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:
@@ -1,4 +1,4 @@
|
||||
defmodule SimpleshopTheme.Repo.Migrations.CreateUsersAuthTables do
|
||||
defmodule Berrypod.Repo.Migrations.CreateUsersAuthTables do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule SimpleshopTheme.Repo.Migrations.CreateSettings do
|
||||
defmodule Berrypod.Repo.Migrations.CreateSettings do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule SimpleshopTheme.Repo.Migrations.CreateImages do
|
||||
defmodule Berrypod.Repo.Migrations.CreateImages do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule SimpleshopTheme.Repo.Migrations.AddImageMetadataAndOban do
|
||||
defmodule Berrypod.Repo.Migrations.AddImageMetadataAndOban do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule SimpleshopTheme.Repo.Migrations.CreateProviderConnections do
|
||||
defmodule Berrypod.Repo.Migrations.CreateProviderConnections do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule SimpleshopTheme.Repo.Migrations.CreateProducts do
|
||||
defmodule Berrypod.Repo.Migrations.CreateProducts do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule SimpleshopTheme.Repo.Migrations.CreateProductImages do
|
||||
defmodule Berrypod.Repo.Migrations.CreateProductImages do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule SimpleshopTheme.Repo.Migrations.CreateProductVariants do
|
||||
defmodule Berrypod.Repo.Migrations.CreateProductVariants do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule SimpleshopTheme.Repo.Migrations.AddImageIdToProductImages do
|
||||
defmodule Berrypod.Repo.Migrations.AddImageIdToProductImages do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule SimpleshopTheme.Repo.Migrations.CreateOrders do
|
||||
defmodule Berrypod.Repo.Migrations.CreateOrders do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule SimpleshopTheme.Repo.Migrations.AddEncryptedValueToSettings do
|
||||
defmodule Berrypod.Repo.Migrations.AddEncryptedValueToSettings do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule SimpleshopTheme.Repo.Migrations.AddFulfilmentFieldsToOrders do
|
||||
defmodule Berrypod.Repo.Migrations.AddFulfilmentFieldsToOrders do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule SimpleshopTheme.Repo.Migrations.AddCachedProductFields do
|
||||
defmodule Berrypod.Repo.Migrations.AddCachedProductFields do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule SimpleshopTheme.Repo.Migrations.CreateProductsSearch do
|
||||
defmodule Berrypod.Repo.Migrations.CreateProductsSearch do
|
||||
use Ecto.Migration
|
||||
|
||||
def up do
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule SimpleshopTheme.Repo.Migrations.CreateShippingRates do
|
||||
defmodule Berrypod.Repo.Migrations.CreateShippingRates do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule SimpleshopTheme.Repo.Migrations.AddShippingCostToOrders do
|
||||
defmodule Berrypod.Repo.Migrations.AddShippingCostToOrders do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule SimpleshopTheme.Repo.Migrations.AddColorToProductImages do
|
||||
defmodule Berrypod.Repo.Migrations.AddColorToProductImages do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
|
||||
@@ -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...")
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>SimpleShop Theme Studio v28</title>
|
||||
<title>Berrypod Theme Studio v28</title>
|
||||
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
@@ -4252,7 +4252,7 @@
|
||||
<div class="browser-favicon" id="browser-favicon">
|
||||
<span class="favicon-letter" id="favicon-letter">B</span>
|
||||
</div>
|
||||
<span class="browser-url-text"><span class="domain" id="browser-domain">botanicalstudio</span>.simpleshop.uk</span>
|
||||
<span class="browser-url-text"><span class="domain" id="browser-domain">botanicalstudio</span>.berrypod.uk</span>
|
||||
</div>
|
||||
<div class="browser-actions">
|
||||
<button class="browser-action-btn" aria-label="Share">
|
||||
|
||||
Reference in New Issue
Block a user