ARK: Survival Evolved

ARK: Survival Evolved

Mod Version Checker
 This topic has been pinned, so it's probably important
jslay  [developer] Jan 28, 2018 @ 1:48am
Host your own API
Heroku Guide

Setup a free Heroku Account.

Install Heroku Tools. Make sure Git is checked on the install options.

Open a terminal/command prompt and login to Heroku
heroku login

Download the source for the API application.


Extract the folder. Open the folder.

Inside the folder, open a terminal/command prompt. Run the following commands
git init heroku create git add . git commit -m "Initial Commit" git push heroku master

It should provide a url for you to access the application. Follow that URL, and you should see the web frontend for the API. Run a set of IDs through that form, and validate the output.


Your API URL is the Heroku App URL + /api/v1/versioncheck

Example
Last edited by jslay; Jan 28, 2018 @ 2:07am