# swatbot **Repository Path**: mirrors_git_yoctoproject_org/swatbot ## Basic Information - **Project Name**: swatbot - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-03-21 - **Last Updated**: 2026-01-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README SwatBot is a Django web app designed to help Yocto Project administer it's SWAT process for triaging autobuilder failures. https://swatbot.yoctoproject.org The current maintainer is Richard Purdie Where to Send Patches ===================== Patches should be sent to the Swat mailing list with [swatbot] in the subject line. Before sending, be sure the patches apply cleanly to the appropriate branch of the Git repository. Git repository: https://git.yoctoproject.org/cgit.cgi/swatbot/ Mailing list: swat@lists.yoctoproject.org This can be configured within the repository with the commands: git config sendemail.to swat@lists.yoctoproject.org git config format.subjectprefix "swatbot] [PATCH" Quickstart ========== Steps to setup and run a local swatbot instance for testing: git clone https://git.yoctoproject.org/swatbot cd swatbot python3 -m venv venv source venv/bin/activate python3 -m pip install -r requirements.txt vi swatbot/settings.py (set SECRET_KEY, set Debug option, add '*' to ALLOWED_HOSTS or similar) python3 manage.py migrate python3 manage.py runserver