first commit

This commit is contained in:
KS Jannette
2026-02-11 11:28:38 -05:00
commit cc95296f5e
24 changed files with 4157 additions and 0 deletions

8
backend/server.js Normal file
View File

@@ -0,0 +1,8 @@
import app from './app.js';
import config from './config/index.js';
const PORT = config.port || 3001;
app.listen(PORT, () => {
console.log(`Envision backend running on port ${PORT}`);
});