From 6b1cac38921671eec7aadbf60d0e3bc07600cb66 Mon Sep 17 00:00:00 2001 From: geoffrey45 Date: Sun, 12 Feb 2023 23:54:28 +0300 Subject: [PATCH] add comment to config --- manage.py | 2 +- pyinstaller.config.ini | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/manage.py b/manage.py index 3fa65a2..04212e5 100644 --- a/manage.py +++ b/manage.py @@ -43,7 +43,7 @@ def serve_client_files(path): @app.route("/") def serve_client(): """ - Serves the index.html file at client/index.html. + Serves the index.html file at `client/index.html`. """ return app.send_static_file("index.html") diff --git a/pyinstaller.config.ini b/pyinstaller.config.ini index 9981586..eb477f3 100644 --- a/pyinstaller.config.ini +++ b/pyinstaller.config.ini @@ -1,3 +1,6 @@ +; This file is used to determine whether the app is running in development or build mode. +; TODO: Find a better name for this file. + [DEFAULT] build = False