Cortex Project Update: Version 1.0 Release & Hackathon Submission We are thrilled to share the official release and submission of Cortex—an interactive AI study companion and dynamic database diagram generator built for seamless learning and system modeling!
What's New in This Version Dynamic AI Architecture: Integrated cutting-edge model workflows to interpret user study prompts and instantly translate them into structured relational database schemas and visual flow blueprints.
Streamlined UI/UX: Refined the full-stack layout using a responsive interface so students and developers can spin up diagrams and query concepts smoothly at localhost:5173.
Zero-Config Local Deployment: Optimized package setup with lightweight dependency installation (npm install) to let anyone spin up the development environment locally in seconds.
Code Snippet: Core Local Server Initialization // Quick setup for running Cortex locally const express = require('express'); const app = express(); const PORT = process.env.PORT || 5173;
app.use(express.json());
app.get('/api/health', (req, res) => { res.status(200).json({ status: 'Cortex engine active & ready' }); });
app.listen(PORT, () => {
console.log(Cortex study companion running on http://localhost:${PORT});
});
What's Next? Expanding export options for generated database entity-relationship (ER) diagrams (SQL, Mermaid.js, and PNG).
Introducing community-shared study notebooks.
Check out the code repository on GitHub, test out the local build, and drop your thoughts or feature requests in the comments below!
Log in or sign up for Devpost to join the conversation.