Skip to content

Commit 16d9a04

Browse files
🧹 Housekeeping
2 parents e00460b + 6d3e447 commit 16d9a04

File tree

11 files changed

+3532
-2671
lines changed

11 files changed

+3532
-2671
lines changed

‎.vscode/settings.json‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
"/coverage": true
1212
},
1313
"files.insertFinalNewline": true,
14+
"files.associations": {
15+
"*.css": "tailwindcss"
16+
},
1417
"jestrunner.jestCommand": "npm run test",
1518
"cSpell.words": ["tailwindcss"]
1619
}

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Please note that the `.env` file is ignored by Git for security reasons.
3333
Next, you need to start the database and seed the data. You can do this by running the following command:
3434

3535
```bash
36-
docker run --rm --name postgres -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=currencies -p 5432:5432 -d postgres:15
36+
docker run --rm --name postgres -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=currencies -p 5432:5432 -d postgres:17-alpine
3737

3838
pnpm db:seed
3939

‎app/globals.css‎

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
@tailwind base;
2-
@tailwind components;
3-
@tailwind utilities;
1+
@import "tailwindcss";
2+
3+
@theme {
4+
--color-moonpay: #7715F5;
5+
--color-cosmos: #39107A;
6+
}
47

58
:root {
69
--foreground-rgb: 0, 0, 0;

‎app/page.tsx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default async function Home() {
1212
const currencies = await prisma.currencies.findMany();
1313
return (
1414
<main className="relative flex min-h-screen flex-col items-center justify-center">
15-
<h1 className="py-4 bg-gradient-to-br from-black via-cosmos to-moonpay bg-clip-text text-center font-bold tracking-tight text-transparent text-6xl md:text-7xl">
15+
<h1 className="py-4 bg-linear-to-br from-black via-cosmos to-moonpay bg-clip-text text-center font-bold tracking-tight text-transparent text-6xl md:text-7xl inline-block">
1616
LatestPrices
1717
</h1>
1818
<Suspense fallback={<TablePlaceholder />}>

‎docker-compose.yaml‎

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
version: "3.8"
2-
31
# compose for postgres, pgadmin, and nextjs
42
services:
53
postgres:
6-
image: postgres:16-alpine
4+
image: postgres:17-alpine
75
restart: always
86
environment:
97
POSTGRES_USER: postgres

‎mise.toml‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[tools]
2+
pnpm = "latest"
3+
node = "22.13.0"

‎package.json‎

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,25 @@
1212
"start": "next start",
1313
"lint": "next lint"
1414
},
15-
"prisma": {
16-
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
17-
},
1815
"dependencies": {
19-
"@prisma/client": "5.11.0",
20-
"next": "14.1.4",
21-
"react": "18.2.0",
22-
"react-dom": "18.2.0"
16+
"@prisma/client": "6.16.3",
17+
"next": "15.5.4",
18+
"react": "19.2.0",
19+
"react-dom": "19.2.0"
2320
},
2421
"devDependencies": {
25-
"@types/node": "20.12.2",
26-
"@types/react-dom": "18.2.23",
27-
"@types/react": "18.2.73",
28-
"autoprefixer": "10.4.19",
29-
"eslint-config-next": "14.1.4",
30-
"eslint": "8.57.0",
31-
"postcss": "8.4.38",
32-
"prisma": "5.11.0",
33-
"tailwindcss": "3.4.3",
22+
"@tailwindcss/postcss": "^4.1.14",
23+
"@types/node": "22.13.0",
24+
"@types/react": "19.2.2",
25+
"@types/react-dom": "19.2.1",
26+
"autoprefixer": "10.4.21",
27+
"eslint": "9.37.0",
28+
"eslint-config-next": "15.5.4",
29+
"postcss": "8.5.6",
30+
"prisma": "6.16.3",
31+
"tailwindcss": "4.1.14",
3432
"ts-node": "10.9.2",
35-
"turbo": "1.13.0",
36-
"typescript": "5.4.3"
33+
"turbo": "2.5.8",
34+
"typescript": "5.9.3"
3735
}
3836
}

0 commit comments

Comments
 (0)