diff --git a/app/routes/_index.tsx b/app/routes/_index.tsx index cee479db..9aae0ac8 100644 --- a/app/routes/_index.tsx +++ b/app/routes/_index.tsx @@ -9,7 +9,7 @@ import { FigurePopoverBadge } from "~/components/FigurePopover"; import { BadgeHue, BadgeProps } from "~/features/dictionary/badgeFigure"; import { TOTAL_ATOMIC_COMPONENTS_COUNT } from "~/features/dictionary/TOTAL_ATOMIC_COMPONENTS_COUNT"; -export const meta: MetaFunction = () => [{ title: "Remix Notes" }]; +export const meta: MetaFunction = () => [{ title: "Kanjisense" }]; export default function Index() { return ( diff --git a/fly.toml b/fly.toml index b6bf41a3..d48ecd5c 100644 --- a/fly.toml +++ b/fly.toml @@ -12,7 +12,7 @@ port = 8_081 path = "/metrics" [deploy] -release_command = "bash ./scripts/migrate.sh" +release_command = "bash ./scripts/migrate.sh && npm run prisma db seed" [experimental] allowed_public_ports = [ ] diff --git a/package.json b/package.json index 0b4d122d..15a7dba5 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,8 @@ "pretest:e2e:run": "npm run build", "test:e2e:run": "cross-env PORT=8811 start-server-and-test start:mocks http://localhost:8811 \"npx cypress run\"", "typecheck": "tsc && tsc -p cypress", - "validate": "run-p \"test -- --run\" lint typecheck test:e2e:run" + "validate": "run-p \"test -- --run\" lint typecheck test:e2e:run", + "prisma": "prisma" }, "eslintIgnore": [ "/node_modules",