Change default port to 8000

This commit is contained in:
2021-10-19 22:19:59 +02:00
parent 5473b77416
commit d023ec8d73
3 changed files with 7 additions and 7 deletions

View File

@@ -37,7 +37,7 @@ from . import caching, crawler, readabilite
from .morss import (DELAY, TIMEOUT, FeedFetch, FeedFormat, FeedGather,
MorssException, Options, log)
PORT = int(os.getenv('PORT', 8080))
PORT = int(os.getenv('PORT', 8000))
def parse_options(options):