system: Linux mars.sprixweb.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
const app = require('./src/app')
const { baseWebhookURL } = require('./src/config')
require('dotenv').config()
// Start the server
const port = process.env.PORT || 3000
// Check if BASE_WEBHOOK_URL environment variable is available
if (!baseWebhookURL) {
console.error('BASE_WEBHOOK_URL environment variable is not available. Exiting...')
process.exit(1) // Terminate the application with an error code
}
app.listen(port, () => {
console.log(`Server running on port ${port}`)
})