initialize git, basic setup for crm

This commit is contained in:
richardtekula
2025-11-18 13:53:28 +01:00
commit da01d586fc
47 changed files with 12776 additions and 0 deletions

6
src/index.js Normal file
View File

@@ -0,0 +1,6 @@
import app from './app.js';
const port = process.env.PORT || 5000;
app.listen(port, () => {
console.log(`🚀 Server running on http://localhost:${port}`);
});