Compare commits
4 Commits
0cabcf7438
...
2b22f504cf
| Author | SHA1 | Date | |
|---|---|---|---|
| 2b22f504cf | |||
| 9a87e9dde3 | |||
| ea7f0551f0 | |||
| 30d30f68fb |
+3
-1
@@ -1,7 +1,7 @@
|
|||||||
@import "tailwindcss";
|
@import "tailwindcss";
|
||||||
@import "flag-icons/css/flag-icons.min.css";
|
@import "flag-icons/css/flag-icons.min.css";
|
||||||
|
|
||||||
@theme inline {
|
@theme {
|
||||||
--color-bg: #040d08;
|
--color-bg: #040d08;
|
||||||
--color-card: #0a1810;
|
--color-card: #0a1810;
|
||||||
--color-hero: #0d2416;
|
--color-hero: #0d2416;
|
||||||
@@ -17,6 +17,7 @@
|
|||||||
--font-body: "Space Grotesk", system-ui, sans-serif;
|
--font-body: "Space Grotesk", system-ui, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@layer base {
|
||||||
* { box-sizing: border-box; margin: 0; padding: 0; }
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||||||
|
|
||||||
html { scroll-behavior: smooth; }
|
html { scroll-behavior: smooth; }
|
||||||
@@ -55,3 +56,4 @@ body {
|
|||||||
rgba(34,197,94,0.018) 88px
|
rgba(34,197,94,0.018) 88px
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|||||||
+4
-1
@@ -73,7 +73,10 @@ function parseScore(score: RawScore | undefined) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function run() {
|
async function run() {
|
||||||
const client = postgres(DATABASE_URL, { max: 5 })
|
const client = postgres(DATABASE_URL, {
|
||||||
|
max: 5,
|
||||||
|
...(process.env.DB_PASSWORD ? { password: process.env.DB_PASSWORD } : {}),
|
||||||
|
})
|
||||||
const db = drizzle(client)
|
const db = drizzle(client)
|
||||||
|
|
||||||
console.log('Creating tables...')
|
console.log('Creating tables...')
|
||||||
|
|||||||
Reference in New Issue
Block a user