Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ debug.keystore
/app/build/
.build-outputs/

node_modules
.next
3 changes: 2 additions & 1 deletion components/ui/glass-cards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,8 @@ export const LiquidThemeControlPanel: React.FC<ControlPanelProps> = ({ currentPr
return () => {
if (timerRef.current) clearInterval(timerRef.current);
};
}, [isAutoPlaying, currentIndex]);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [isAutoPlaying]);

const activePreset = presetsInfo[currentPreset];

Expand Down
7 changes: 7 additions & 0 deletions drizzle.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"dialect": "postgresql",
"schema": "./src/db/schema.ts",
"dbCredentials": {
"url": "postgresql://postgres:postgres@127.0.0.1:5432/app_db"
}
}
8 changes: 8 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { defineConfig, globalIgnores } from "eslint/config";
import nextCoreWebVitals from "eslint-config-next/core-web-vitals";

export default defineConfig([
// Keep the starter on the flat config export that actually runs under the pinned ESLint/Next toolchain.
...nextCoreWebVitals,
globalIgnores([".next/**", "out/**", "build/**", "next-env.d.ts"]),
]);
Binary file added full-stack-rock-qr-application.zip
Binary file not shown.
6 changes: 6 additions & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/types/routes.d.ts";

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
5 changes: 5 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {};

export default nextConfig;
Loading
Loading