├── .eslintrc.js ├── .github ├── FUNDING.yml └── workflows │ └── deploy.yml ├── .gitignore ├── LICENSE ├── README.md ├── config ├── example-config.js ├── example-plugins.js └── example-servers.js ├── data └── .gitkeep ├── docs ├── .pages ├── configuration │ ├── .pages │ ├── config.md │ ├── env.md │ ├── plugins.md │ └── servers.md ├── favicon.ico ├── img │ ├── favicon.ico │ └── logo.png ├── index.md ├── installation.md └── stylesheets │ └── extra.css ├── example.env ├── mkdocs.yml ├── package.json ├── requirements.txt └── src ├── bukkit ├── check.js └── download.js ├── database ├── index.js └── models │ ├── plugins.js │ ├── server_jars.js │ └── servers.js ├── github ├── check.js └── download.js ├── index.js ├── jenkins ├── check.js └── download.js ├── paper ├── check.js └── download.js ├── pterodactyl ├── http.js └── index.js ├── serverjars ├── check.js └── download.js ├── spigot ├── check.js └── download.js ├── updater ├── checkForUpdates.js ├── downloadPlugins.js ├── downloadServers.js ├── index.js └── uploadFiles.js └── utils ├── discord.js ├── fs.js ├── index.js └── minecraft.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/README.md -------------------------------------------------------------------------------- /config/example-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/config/example-config.js -------------------------------------------------------------------------------- /config/example-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/config/example-plugins.js -------------------------------------------------------------------------------- /config/example-servers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/config/example-servers.js -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/docs/.pages -------------------------------------------------------------------------------- /docs/configuration/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/docs/configuration/.pages -------------------------------------------------------------------------------- /docs/configuration/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/docs/configuration/config.md -------------------------------------------------------------------------------- /docs/configuration/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/docs/configuration/env.md -------------------------------------------------------------------------------- /docs/configuration/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/docs/configuration/plugins.md -------------------------------------------------------------------------------- /docs/configuration/servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/docs/configuration/servers.md -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/docs/img/favicon.ico -------------------------------------------------------------------------------- /docs/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/docs/img/logo.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/example.env -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/bukkit/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/bukkit/check.js -------------------------------------------------------------------------------- /src/bukkit/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/bukkit/download.js -------------------------------------------------------------------------------- /src/database/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/database/index.js -------------------------------------------------------------------------------- /src/database/models/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/database/models/plugins.js -------------------------------------------------------------------------------- /src/database/models/server_jars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/database/models/server_jars.js -------------------------------------------------------------------------------- /src/database/models/servers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/database/models/servers.js -------------------------------------------------------------------------------- /src/github/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/github/check.js -------------------------------------------------------------------------------- /src/github/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/github/download.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/index.js -------------------------------------------------------------------------------- /src/jenkins/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/jenkins/check.js -------------------------------------------------------------------------------- /src/jenkins/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/jenkins/download.js -------------------------------------------------------------------------------- /src/paper/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/paper/check.js -------------------------------------------------------------------------------- /src/paper/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/paper/download.js -------------------------------------------------------------------------------- /src/pterodactyl/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/pterodactyl/http.js -------------------------------------------------------------------------------- /src/pterodactyl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/pterodactyl/index.js -------------------------------------------------------------------------------- /src/serverjars/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/serverjars/check.js -------------------------------------------------------------------------------- /src/serverjars/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/serverjars/download.js -------------------------------------------------------------------------------- /src/spigot/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/spigot/check.js -------------------------------------------------------------------------------- /src/spigot/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/spigot/download.js -------------------------------------------------------------------------------- /src/updater/checkForUpdates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/updater/checkForUpdates.js -------------------------------------------------------------------------------- /src/updater/downloadPlugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/updater/downloadPlugins.js -------------------------------------------------------------------------------- /src/updater/downloadServers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/updater/downloadServers.js -------------------------------------------------------------------------------- /src/updater/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/updater/index.js -------------------------------------------------------------------------------- /src/updater/uploadFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/updater/uploadFiles.js -------------------------------------------------------------------------------- /src/utils/discord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/utils/discord.js -------------------------------------------------------------------------------- /src/utils/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/utils/fs.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/minecraft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/left4craft/spigot-updater/HEAD/src/utils/minecraft.js --------------------------------------------------------------------------------