Spaces:
No application file
No application file
File size: 3,097 Bytes
81c67ff |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Deploy DEEP.REBUILD</title>
<style>
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; padding: 2rem; background: #f8fafc; }
.container { max-width: 800px; margin: 0 auto; background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.deploy-btn { display: inline-block; padding: 12px 24px; margin: 8px; background: #0070f3; color: white; text-decoration: none; border-radius: 8px; font-weight: 600; transition: all 0.2s; }
.deploy-btn:hover { background: #0051cc; transform: translateY(-1px); }
.hf-btn { background: #ff6b35; }
.hf-btn:hover { background: #e55a2b; }
.github-btn { background: #24292e; }
.github-btn:hover { background: #1a1e22; }
h1 { color: #1a202c; margin-bottom: 1rem; }
p { color: #4a5568; line-height: 1.6; }
.warning { background: #fef5e7; border: 1px solid #f6ad55; padding: 1rem; border-radius: 8px; margin: 1rem 0; }
</style>
</head>
<body>
<div class="container">
<h1>π Deploy DEEP.REBUILD</h1>
<p>Choose your deployment platform. Make sure you have your environment variables ready!</p>
<div class="warning">
<strong>β οΈ Before deploying:</strong> Set up your API keys in the platform's environment variables section.
</div>
Vercel Deploy
<a href="https://vercel.com/new/clone?repository-url=https://github.com/YOUR_USERNAME/deep-rebuild&project-name=deep-rebuild&repository-name=deep-rebuild"
class="deploy-btn" target="_blank">
π¦ Deploy to Vercel
</a>
HuggingFace Deploy
<a href="https://huggingface.co/new-space?template=https://github.com/YOUR_USERNAME/deep-rebuild&sdk=docker&hardware=cpu-basic"
class="deploy-btn hf-btn" target="_blank">
π€ Deploy to HuggingFace
</a>
GitHub Template
<a href="https://github.com/YOUR_USERNAME/deep-rebuild/generate"
class="deploy-btn github-btn" target="_blank">
π Use as GitHub Template
</a>
<h2>π Required Environment Variables</h2>
<ul>
<li><code>NEXT_PUBLIC_SUPABASE_URL</code> - Your Supabase project URL</li>
<li><code>SUPABASE_SERVICE_ROLE_KEY</code> - Supabase service role key</li>
<li><code>OPENAI_API_KEY</code> - OpenAI API key (optional)</li>
<li><code>OPENROUTER_API_KEY</code> - OpenRouter API key (optional)</li>
<li><code>GROQ_API_KEY</code> - Groq API key (optional)</li>
<li><code>XAI_API_KEY</code> - xAI Grok API key (optional)</li>
<li><code>MONGODB_URI</code> - MongoDB connection string (optional)</li>
</ul>
<p><strong>Note:</strong> You need at least one AI provider API key for the system to function.</p>
</div>
</body>
</html>
|