Resume / app.js
AFAautomation's picture
Initial commit with LFS enabled
92a138e
Raw
History Blame Contribute Delete
353 Bytes
/**
* Hostinger Passenger Entry Point
* This file allows Hostinger's Node.js selector (Passenger) to detect and run the application.
*/
// Load environment variables if present
require('dotenv').config({ path: './backend/.env' });
// Simply require the existing backend server
const app = require('./backend/src/server.js');
module.exports = app;