├── .dockerignore ├── .env.example ├── .gitignore ├── Dockerfile ├── README.md ├── app.js ├── config └── development.cjson.sample ├── docker-compose.dev.yml ├── docker-compose.yml ├── lib ├── Configuration.js ├── RamXmpp.js └── RemDiscord.js ├── package.json └── run.bat /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtrih/discord-xmpp-transport-bot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=dscrd_xmpp_trnsprt 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtrih/discord-xmpp-transport-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtrih/discord-xmpp-transport-bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtrih/discord-xmpp-transport-bot/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtrih/discord-xmpp-transport-bot/HEAD/app.js -------------------------------------------------------------------------------- /config/development.cjson.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtrih/discord-xmpp-transport-bot/HEAD/config/development.cjson.sample -------------------------------------------------------------------------------- /docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtrih/discord-xmpp-transport-bot/HEAD/docker-compose.dev.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtrih/discord-xmpp-transport-bot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lib/Configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtrih/discord-xmpp-transport-bot/HEAD/lib/Configuration.js -------------------------------------------------------------------------------- /lib/RamXmpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtrih/discord-xmpp-transport-bot/HEAD/lib/RamXmpp.js -------------------------------------------------------------------------------- /lib/RemDiscord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtrih/discord-xmpp-transport-bot/HEAD/lib/RemDiscord.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtrih/discord-xmpp-transport-bot/HEAD/package.json -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shtrih/discord-xmpp-transport-bot/HEAD/run.bat --------------------------------------------------------------------------------