Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file removed example.env
Empty file.
4 changes: 2 additions & 2 deletions services/treeview/example.env
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
OLFYI_HOST=db.0l.fyi
OLFYI_PORT=80
OLFYI_PORT=443
OLFYI_USERNAME=ol
OLFYI_PASSWORD=<insert_password>
OLFYI_DATABASE=olfyi
DATA_PATH=assets/
DATA_PATH=assets/
1 change: 1 addition & 0 deletions services/treeview/src/ol_fyi.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def get_address_parent_relations_olfyi():
client = clickhouse_connect.get_client(
host = Config.OLFYI_HOST,
port = Config.OLFYI_PORT,
secure = True,
username = Config.OLFYI_USERNAME,
password = Config.OLFYI_PASSWORD,
database = Config.OLFYI_DATABASE
Expand Down