├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app.js ├── commands └── ping.js ├── config.json ├── events ├── guildMemberAdd.js └── ready.js └── package.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CappeDiem/Discord.js-bot-template/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Dependency directory 2 | node_modules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CappeDiem/Discord.js-bot-template/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CappeDiem/Discord.js-bot-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CappeDiem/Discord.js-bot-template/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CappeDiem/Discord.js-bot-template/HEAD/app.js -------------------------------------------------------------------------------- /commands/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CappeDiem/Discord.js-bot-template/HEAD/commands/ping.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CappeDiem/Discord.js-bot-template/HEAD/config.json -------------------------------------------------------------------------------- /events/guildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CappeDiem/Discord.js-bot-template/HEAD/events/guildMemberAdd.js -------------------------------------------------------------------------------- /events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CappeDiem/Discord.js-bot-template/HEAD/events/ready.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CappeDiem/Discord.js-bot-template/HEAD/package.json --------------------------------------------------------------------------------