Remove dist folder from repository

This commit is contained in:
abumahid
2026-06-17 20:15:51 +06:00
parent 61fd639faf
commit 0a8fe573ae
54 changed files with 0 additions and 2483 deletions
-19
View File
@@ -1,19 +0,0 @@
import app from "./app.js";
import { configs } from "./app/configs/index.js";
import { prisma } from "./app/lib/prisma.js";
import "./app/queues/worker.js";
async function main() {
try {
app.listen(configs.port, async () => {
await prisma.$connect();
console.log(`Server is running on port ${configs.port}`);
});
}
catch (error) {
console.error("Error starting server:", error);
}
}
main().catch((error) => {
console.error("Error in main function:", error);
process.exit(1);
});