{% extends "base.html" %} {% block title %}Configuration - GitHub to Gitea Mirror{% endblock %} {% block content %}

Configuration

Back to Home
Mirror Scheduler Settings
How often the mirror script should run automatically (in hours)
When enabled, the mirror script will run automatically at the specified interval
  • DEBUG: Detailed information, typically of interest only when diagnosing problems
  • INFO: Confirmation that things are working as expected
  • WARNING: Indication that something unexpected happened, but the application is still working
  • ERROR: Due to a more serious problem, the application has not been able to perform some function
  • CRITICAL: A serious error, indicating that the application itself may be unable to continue running
Scheduler Status

Scheduler Status: {% if config.scheduler_enabled %} Enabled {% else %} Disabled {% endif %}

Mirror Interval: {{ config.mirror_interval }} hours

Logging Level: {{ config.log_level }}

Last Run: {% if config.last_mirror_run %} {{ config.last_mirror_run|timestamp_to_datetime }} {% else %} Never {% endif %}

Next Run: {% if next_run %} {{ next_run.strftime('%Y-%m-%d %H:%M:%S') }} {% else %} Not scheduled {% endif %}

{% endblock %} {% block scripts %} {% endblock %}