feat(backend): configure Dockerfile and express server to build and serve mobile app at /mobile on Cloud Run
This commit is contained in:
@@ -1,23 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Backend Running</title>
|
||||
<style>
|
||||
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; display: flex; align-items: center; justify-content: center; min-height: 100vh; margin: 0; background: #f5f5f5; color: #333; }
|
||||
.card { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); text-align: center; }
|
||||
h1 { margin: 0 0 0.5rem; font-size: 1.5rem; }
|
||||
p { margin: 0.25rem 0; color: #666; }
|
||||
a { color: #0066cc; text-decoration: none; }
|
||||
a:hover { text-decoration: underline; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="card">
|
||||
<h1>Backend Running</h1>
|
||||
<p>API <a href="/api/health">/api/health</a></p>
|
||||
<p>Frontend build not found — run <code>bun run build</code> in website/</p>
|
||||
</div>
|
||||
</body>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/png" href="/favicon.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Hello World Dapp</title>
|
||||
<script type="module" crossorigin src="/assets/index-DLlBFUEW.js"></script>
|
||||
<link rel="stylesheet" crossorigin href="/assets/index-DBU9EtQF.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<script src="https://content.trynoah.ai/utils.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user