Author: sebb Date: Thu Feb 12 18:17:10 2026 New Revision: 1931837 Log: Set up data for Docker
Modified: comdev/reporter.apache.org/trunk/docker-config/start-reporter.sh Modified: comdev/reporter.apache.org/trunk/docker-config/start-reporter.sh ============================================================================== --- comdev/reporter.apache.org/trunk/docker-config/start-reporter.sh Thu Feb 12 18:15:14 2026 (r1931836) +++ comdev/reporter.apache.org/trunk/docker-config/start-reporter.sh Thu Feb 12 18:17:10 2026 (r1931837) @@ -5,4 +5,16 @@ rm -f /var/log/apache2/*.log apache2ctl start cd scripts + +# These are normally run as cron jobs +python3 parsepmcs.py +python3 reportingcycles.py +python3 pmcdates.py +python3 health.py + +# These are slow - only invoke if necessary +test -r ../data/maildata_extended.json || python3 mailglomper2.py +test -r ../data/JIRA/jira_projects.json || python3 readjira.py +test -r ../data/bugzillastats.json || python3 bugzillastats.py + exec gunicorn -b 127.0.0.1 -w 1 --timeout 120 wsgi:app --capture-output --access-logfile - --error-logfile - \ No newline at end of file
