mirror of https://github.com/r4sas/Niflheim-api
yakamok
6 years ago
committed by
GitHub
1 changed files with 17 additions and 2 deletions
@ -1,5 +1,20 @@
@@ -1,5 +1,20 @@
|
||||
# yggapi.py |
||||
# niflheim-api.py |
||||
|
||||
This api provides a web interface to see some basic stats on the data vserv.py has collected and also provides and easy way to get the data through the api. |
||||
|
||||
![api](https://github.com/yakamok/ygg-node-db/blob/master/api.png) |
||||
## Install & Setup |
||||
|
||||
First thing you are going to do is 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) |
||||
|
Loading…
Reference in new issue