1
0
mirror of https://github.com/r4sas/Niflheim-api synced 2025-01-27 15:14:37 +00:00
2018-11-21 18:24:01 +01:00
..
2018-11-17 21:17:39 +01:00
2018-11-21 18:24:01 +01:00

niflheim-api.py

This api provides a web interface to see some basic stats on the data vserv.py has collected and also provides an easy way to get the data through the api.

Install & Setup

Configure niflheim-api.py to use the Postgres databse you setup for vserv.py.

So open niflheim-api.py:

DB_PASSWORD = "password"
DB_USER = "yggindex"
DB_NAME = "yggindex"
DB_HOST = "localhost"

Make sure the above matches what you have in vserv.py.

The API will startup on port 3000 and accept all ipv6 connections if you want to change this edit the last line:

app.run(host='::', port=3000)