Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 910 Bytes

File metadata and controls

21 lines (16 loc) · 910 Bytes

Documentation Status

eveonline-third-party-documentation

Documentation for EVE Online third-party developers. This covers things like the XML API, CREST, the Static Data Export (SDE), and SSO. You can read the latest version of the documentation here.

Developing

Setup

You will need to have python, pip and virtualenv installed (install virtualenv using pip) then run the following commands from inside the repo directory:

Windows

virtualenv venv
venv\Scripts\activate
pip install -r requirements.txt

Linux/mac

virtualenv venv
source venv/bin/activate
pip install -r requirements.txt

Running

mkdocs serve