Skip to content

Commit

Permalink
rename dashboard app to engine (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasfrancisco authored Sep 24, 2024
1 parent e12fffc commit 781e1db
Show file tree
Hide file tree
Showing 198 changed files with 64 additions and 118 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions apps/dashboard/package.json → apps/engine/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "dashboard",
"name": "engine",
"version": "0.1.0",
"private": true,
"type": "module",
Expand Down Expand Up @@ -73,7 +73,6 @@
"eslint-config-next": "14.2.5",
"jiti": "^1.21.6",
"postcss": "catalog:",
"supabase": "^1.187.10",
"tailwindcss": "catalog:",
"typescript": "catalog:"
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import type { Config } from 'tailwindcss';

const config: Config = {
corePlugins: {
preflight: false, // Usage of packages/components includes preflight already
},
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"prettier": "@ds-project/prettier",
"scripts": {
"build": "turbo run build",
"dev:engine": "turbo run dev --filter=dashboard --filter=@ds-project/database --filter=@ds-project/components",
"dev:engine": "turbo run dev --filter=engine --filter=@ds-project/database --filter=@ds-project/components",
"dev:widget": "turbo run dev --filter=@ds-project/figma-widget --filter=@ds-project/components",
"clean": "turbo run clean && rm -rf node_modules",
"type-check": "turbo run type-check",
Expand Down
15 changes: 8 additions & 7 deletions packages/database/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@
},
"scripts": {
"dev": "pnpm start && pnpm status",
"dump": "pnpx supabase db dump --schema public -f supabase/schema.sql --local",
"dump": "supabase db dump --schema public -f supabase/schema.sql --local",
"format": "prettier --check . --ignore-path ../../.gitignore --ignore-path ../../.prettierignore",
"generate": "drizzle-kit generate",
"lint": "eslint",
"migrate": "pnpx tsx --conditions=react-server src/migrate.ts",
"reset": "pnpx supabase db reset && pnpm migrate",
"squash": "pnpx supabase migration squash --local",
"start": "pnpx supabase start",
"status": "pnpx supabase status",
"stop": "pnpx supabase stop",
"reset": "supabase db reset && pnpm migrate",
"squash": "supabase migration squash --local",
"start": "supabase start",
"status": "supabase status",
"stop": "supabase stop",
"studio": "drizzle-kit studio",
"type-check": "tsc --noEmit --emitDeclarationOnly false",
"types": "pnpm dlx supabase gen types --lang=typescript --local > src/__generated__/database.types.ts"
"types": "supabase gen types --lang=typescript --local > src/__generated__/database.types.ts"
},
"prettier": "@ds-project/prettier",
"dependencies": {
Expand All @@ -55,6 +55,7 @@
"@types/node": "catalog:",
"eslint": "catalog:",
"style-dictionary": "catalog:",
"supabase": "^1.200.3",
"typescript": "catalog:"
}
}
2 changes: 1 addition & 1 deletion packages/database/supabase/config.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# A string used to distinguish different Supabase projects on the same host. Defaults to the
# working directory name when running `supabase init`.
project_id = "dashboard"
project_id = "engine"

[api]
enabled = true
Expand Down
Loading

0 comments on commit 781e1db

Please sign in to comment.