Skip to content

Instantly share code, notes, and snippets.

@sweetyclem
Created June 6, 2020 20:11
Show Gist options
  • Save sweetyclem/877c989150d7679600d006d2d00404ca to your computer and use it in GitHub Desktop.
Save sweetyclem/877c989150d7679600d006d2d00404ca to your computer and use it in GitHub Desktop.
if (process.env.NODE_ENV !== "production") {
require("dotenv").config()
}
const express = require('express')
const port = process.env.PORT
const app = express()
const events = require('./events')
const interactions = require('./interactions')
const slashCommand = require('./slashCommand')
events.listenForEvents(app)
interactions.listenForInteractions(app)
slashCommand.listenForCommands(app)
app.listen(port, function () {
console.log(`Listening on ${port}`)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment