This commit is contained in:
parent
1cde8d0d02
commit
66cc98ecfc
13
app.py
13
app.py
@ -1,10 +1,10 @@
|
||||
from flask import Flask, render_template, request
|
||||
from flask_assets import Bundle, Environment
|
||||
from todo import todos
|
||||
from boards import board_list
|
||||
#from boards import board_list
|
||||
from threads import threads_lists
|
||||
from threads_with_posts import open_threads
|
||||
#from arango import ArangoClient
|
||||
from arango import ArangoClient
|
||||
|
||||
import socket
|
||||
|
||||
@ -24,11 +24,12 @@ js.build()
|
||||
|
||||
|
||||
|
||||
# arango_client = ArangoClient(hosts='http://localhost:8529')
|
||||
# db = arango_client.db('board1', username='root', password='rootpassword')
|
||||
|
||||
# boards = db.collection('boards')
|
||||
arango_client = ArangoClient(hosts='http://localhost:8529')
|
||||
db = arango_client.db('board1', username='root', password='rootpassword')
|
||||
|
||||
# предполагается что меняться список будет весьма редко, поэтому подхватываем при лишь при перезапуске
|
||||
boards0 = db.collection('boards')
|
||||
board_list = [ k['_key'] for k in boards0]
|
||||
|
||||
|
||||
@app.route('/liveness')
|
||||
|
Loading…
Reference in New Issue
Block a user