From a1347618cecfbab29de30a56a1edc8b39f0be9c5 Mon Sep 17 00:00:00 2001 From: mi Date: Thu, 6 Nov 2025 22:11:45 +1000 Subject: [PATCH] :wrench: update default port --- app.py | 2 +- scripts/generate_rss.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index b2e3556..6541a80 100644 --- a/app.py +++ b/app.py @@ -65,4 +65,4 @@ def page_not_found(e): if __name__ == '__main__': - app.run(debug=True) \ No newline at end of file + app.run(debug=True, port=3000) \ No newline at end of file diff --git a/scripts/generate_rss.py b/scripts/generate_rss.py index 6386062..d1d14c3 100755 --- a/scripts/generate_rss.py +++ b/scripts/generate_rss.py @@ -13,7 +13,7 @@ sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) from comics_data import COMICS # Configuration - update these for your site -SITE_URL = "http://localhost:5000" # Change to your actual domain +SITE_URL = "http://localhost:3000" # Change to your actual domain SITE_TITLE = "Sunday Comics" SITE_DESCRIPTION = "A webcomic about life, the universe, and everything" SITE_LANGUAGE = "en-us"