DeploySense – Auto-Generate Deploy Configs from Your Project
DeploySense analyzes your project and generates a basic deploy setup so you don’t have to start from scratch every time.
<form id="deploysense-form" style="display:flex;flex-direction:column;gap:10px;max-width:500px;">
<input type="file" id="zip" accept=".zip" style="padding:10px;border-radius:6px;border:1px solid #ccc;">
<button type="button" onclick="analyzeProject()" style="padding:10px;border:none;border-radius:6px;background:#6c5ce7;color:#fff;font-weight:bold;">Analyze Project</button>
</form>
<pre id="output" style="margin-top:20px;padding:15px;background:#111;color:#0f0;border-radius:6px;white-space:pre-wrap;"></pre>
<script>
function analyzeProject(){
const output = document.getElementById('output');
// fake detection for demo
output.textContent =
`Detected: Node.js project
Dockerfile:
------------------
FROM node:18
WORKDIR /app
COPY . .
RUN npm install
CMD ["npm","start"]
.env.example:
------------------
PORT=3000
Notes:
- Exposes port 3000
- Make sure package.json has a start script
`;
}
</script>
Comments (0)
No comments yet — be the first.