Tokiva-backend-Node / src /server.ts
anoderb
feat: initial commit of Tokiva POS Node backend for Hugging Face
ef874e6
Raw
History Blame Contribute Delete
221 Bytes
import app from './app';
import dotenv from 'dotenv';
dotenv.config();
const PORT = process.env.PORT || 5000;
app.listen(PORT, () => {
console.log(`[Server]: Server sedang berjalan di http://localhost:${PORT}`);
});