Initialize project scaffold with full web and API setup.

Add the Vite frontend, Express API server, and supporting configuration files so the app can run locally on a complete development stack.

Made-with: Cursor
This commit is contained in:
Ebenezer
2026-04-15 17:41:46 +08:00
parent c44442de6f
commit 123f82e92c
108 changed files with 20910 additions and 1 deletions

30
index.html Normal file
View File

@@ -0,0 +1,30 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- TODO: Set the document title to the name of your application -->
<title>Lovable App</title>
<meta name="description" content="Lovable Generated Project">
<meta name="author" content="Lovable" />
<!-- TODO: Update og:title to match your application name -->
<meta property="og:type" content="website" />
<meta property="og:image" content="https://pub-bb2e103a32db4e198524a2e9ed8f35b4.r2.dev/4f2c413f-20f3-4c74-b498-b5ecfb0df975/id-preview-3bc20041--907ffd16-1460-46df-8fec-c0cd1a15e8ad.lovable.app-1774322130673.png">
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@Lovable" />
<meta name="twitter:image" content="https://pub-bb2e103a32db4e198524a2e9ed8f35b4.r2.dev/4f2c413f-20f3-4c74-b498-b5ecfb0df975/id-preview-3bc20041--907ffd16-1460-46df-8fec-c0cd1a15e8ad.lovable.app-1774322130673.png">
<meta property="og:title" content="Lovable App">
<meta name="twitter:title" content="Lovable App">
<meta property="og:description" content="Lovable Generated Project">
<meta name="twitter:description" content="Lovable Generated Project">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>