Skip to content

Commit 03524d7

Browse files
authored
Merge pull request #20 from Coderx85/feat/admin-dashboard
feat/admin dashboard
2 parents 8485ffc + 4fa57d0 commit 03524d7

116 files changed

Lines changed: 4537 additions & 2881 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: docker/login-action@v3
2020
with:
2121
username: ${{ vars.DOCKERHUB_USERNAME }}
22-
password: ${{ secrets.TOKEN }}
22+
password: ${{ secrets.DOCKERHUB_TOKEN }}
2323

2424
- name: Build Docker image
2525
uses: docker/build-push-action@v5

drizzle.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { defineConfig } from "drizzle-kit";
2-
import { config } from "./src/lib/config";
2+
import { config } from "@/lib/config";
33

44
export default defineConfig({
55
dialect: "postgresql",
@@ -8,4 +8,5 @@ export default defineConfig({
88
dbCredentials: {
99
url: config.database,
1010
},
11+
casing: "snake_case",
1112
});

package.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dev": "next dev --turbopack",
1313
"build": "next build",
1414
"start": "next start",
15-
"lin": "biome check",
15+
"lint": "biome check",
1616
"format": "biome format --write",
1717
"lint-staged": "lint-staged",
1818
"prepare": "husky",
@@ -86,7 +86,6 @@
8686
"drizzle-seed": "^0.3.1",
8787
"drizzle-zod": "^0.8.3",
8888
"embla-carousel-react": "^8.6.0",
89-
"framer-motion": "12.23.0",
9089
"geist": "^1.4.2",
9190
"globals": "^16.0.0",
9291
"ical-generator": "^9.0.0",
@@ -121,21 +120,18 @@
121120
"zustand": "^5.0.3"
122121
},
123122
"devDependencies": {
124-
"@eslint/eslintrc": "^3",
125123
"@tailwindcss/postcss": "^4.0.17",
126124
"@types/node": "^22.15.3",
127125
"@types/nodemailer": "^6.4.14",
128126
"@types/react": "^19.1.10",
129127
"@types/react-datepicker": "^6.2.0",
130128
"@types/react-dom": "^19",
131129
"@types/uuid": "^10.0.0",
132-
"@vitest/ui": "^3.2.4",
133130
"babel-plugin-react-compiler": "^1.0.0",
134131
"husky": "^9.1.7",
135132
"inngest-cli": "^1.15.3",
136133
"tailwindcss": "^4.1.18",
137-
"typescript": "^5",
138-
"vitest": "^3.2.4"
134+
"typescript": "^5"
139135
},
140136
"trustedDependencies": [
141137
"inngest-cli",

0 commit comments

Comments
 (0)