Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 671 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 671 Bytes

Minecraft Server Versions API

This is a simple API that allows you to keep your server up to date with the latest server jar

Documentation

Usages

#!/bin/bash
# update.sh

# stop the server somehow...

# Download Latest Release as "server.jar"
curl -L -X 'GET' \
  'https://minecraft-update-api-production.up.railway.app/vanilla/latest/release' \
  -o 'server.jar'

# start the server somehow...

Running the API

bun run start

Deploy

Deploy on Railway