🔧 update default port

This commit is contained in:
mi
2025-11-06 22:11:45 +10:00
parent aec5b09967
commit a1347618ce
2 changed files with 2 additions and 2 deletions

2
app.py
View File

@@ -65,4 +65,4 @@ def page_not_found(e):
if __name__ == '__main__': if __name__ == '__main__':
app.run(debug=True) app.run(debug=True, port=3000)

View File

@@ -13,7 +13,7 @@ sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from comics_data import COMICS from comics_data import COMICS
# Configuration - update these for your site # 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_TITLE = "Sunday Comics"
SITE_DESCRIPTION = "A webcomic about life, the universe, and everything" SITE_DESCRIPTION = "A webcomic about life, the universe, and everything"
SITE_LANGUAGE = "en-us" SITE_LANGUAGE = "en-us"