From 12dbf836bdd29c6a745f4288a329057f7a170b2c Mon Sep 17 00:00:00 2001 From: thematdev Date: Tue, 12 Jan 2021 21:16:56 +0300 Subject: [PATCH] Some fixes --- main.py | 7 ++++--- templates/index.html | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/main.py b/main.py index dfa1bfa..558c3f5 100644 --- a/main.py +++ b/main.py @@ -5,7 +5,8 @@ import numpy.random as gaussian_rnd app = Flask(__name__, subdomain_matching=True) -app.config['SERVER_NAME'] = '192.168.51.3:1488' +app.config['SERVER_NAME'] = 'thematdev.org:1488' +SOCKET = 'thematdev.org:1488' def generate_iq(): @@ -33,7 +34,7 @@ def index(): cols = data['cols'] projects = data['projects'] - return render_template('index.html', random_number=generate_iq(), projects=projects) + return render_template('index.html', random_number=generate_iq(), projects=projects, texlink=f"tex.{SOCKET}") @app.route('/', subdomain='tex') @@ -42,7 +43,7 @@ def texindex(): def main(): - app.run('192.168.51.3', 1488) + app.run('thematdev.org', 1488) if __name__ == '__main__': diff --git a/templates/index.html b/templates/index.html index 96fc83b..7ee4b41 100644 --- a/templates/index.html +++ b/templates/index.html @@ -12,7 +12,7 @@

Тут можно подпись какую-то сделать

Ваш IQ: {{ random_number }}

-