Rename project from Re:Link to Startover

Rebrand repository from "Re:Link" to "Startover" across the codebase. Updates include package names and scopes (@relink/* -> @startover/*), import paths, Next.js transpile settings, vitest name, UI text and docs, Dockerfile and CI/workflow names, deploy scripts and repo paths, and example/production env values. Also add auth-related env vars, an apps/web .env symlink, and small formatting/typing cleanups in several TSX/TS files and tests to accommodate the rename.
This commit is contained in:
Johngreen
2026-03-08 20:22:08 +09:00
parent 557559c654
commit 7f59b94dcf
101 changed files with 361 additions and 281 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
{
"name": "@relink/application",
"name": "@startover/application",
"version": "0.0.1",
"private": false,
"type": "module",
@@ -19,8 +19,8 @@
"clean": "rm -rf dist"
},
"dependencies": {
"@relink/domain": "workspace:*",
"@relink/shared": "workspace:*"
"@startover/domain": "workspace:*",
"@startover/shared": "workspace:*"
},
"devDependencies": {
"tsup": "^8.3.5",
+1 -1
View File
@@ -1,5 +1,5 @@
/**
* @relink/application - Use cases and application services
* @startover/application - Use cases and application services
*
* Orchestrates domain entities and defines application-level business rules.
*/
+1 -1
View File
@@ -1,4 +1,4 @@
import type { Result } from '@relink/shared';
import type { Result } from '@startover/shared';
/**
* Base use case interface. All application use cases implement this.
+1 -1
View File
@@ -6,5 +6,5 @@ export default defineConfig({
dts: true,
clean: true,
sourcemap: true,
external: ['@relink/domain', '@relink/shared'],
external: ['@startover/domain', '@startover/shared'],
});