Contributing
#
Getting the source#
Core, Web, Docker, and DocumentationThis repository holds the main Frigate application and all of its dependencies.
Fork blakeblackshear/frigate to your own GitHub profile, then clone the forked repo to your local machine.
From here, follow the guides for:
#
Frigate Home Assistant AddonThis repository holds the Home Assistant Addon, for use with Home Assistant OS and compatible installations. It is the piece that allows you to run Frigate from your Home Assistant Supervisor tab.
Fork blakeblackshear/frigate-hass-addons to your own Github profile, then clone the forked repo to your local machine.
#
Frigate Home Assistant IntegrationThis repository holds the custom integration that allows your Home Assistant installation to automatically create entities for your Frigate instance, whether you run that with the addon or in a separate Docker instance.
Fork blakeblackshear/frigate-hass-integration to your own GitHub profile, then clone the forked repo to your local machine.
#
Core#
Prerequisites- Frigate source code
- GNU make
- Docker
- Extra Coral device (optional, but very helpful to simulate real world performance)
#
Setupmake
#
1. Build the version information and docker container locally by running #
2. Create a local config file for testingPlace the file at config/config.yml
in the root of the repo.
Here is an example, but modify for your needs:
These input args tell ffmpeg to read the mp4 file in an infinite loop. You can use any valid ffmpeg input here.
#
3. Gather some mp4 files for testingCreate and place these files in a debug
folder in the root of the repo. This is also where recordings will be created if you enable them in your test config. Update your config from step 2 above to point at the right file. You can check the docker-compose.yml
file in the repo to see how the volumes are mapped.
#
4. Open the repo with Visual Studio CodeUpon opening, you should be prompted to open the project in a remote container. This will build a container on top of the base frigate container with all the development dependencies installed. This ensures everyone uses a consistent development environment without the need to install any dependencies on your host machine.
#
5. Run frigate from the command lineVSCode will start the docker compose file for you and open a terminal window connected to frigate-dev
.
- Run
python3 -m frigate
to start the backend. - In a separate terminal window inside VS Code, change into the
web
directory and runnpm install && npm start
to start the frontend.
#
6. TeardownAfter closing VSCode, you may still have containers running. To close everything down, just run docker-compose down -v
to cleanup all containers.
#
Testing#
FFMPEG Hardware AccelerationThe following commands are used inside the container to ensure hardware acceleration is working properly.
Raspberry Pi (64bit)
This should show <50% CPU in top, and ~80% CPU without -c:v h264_v4l2m2m
.
NVIDIA
VAAPI
QSV
#
Web Interface#
Prerequisites- Frigate source code
- All core prerequisites or another running Frigate instance locally available
- Node.js 14
#
Making changes#
1. Set up a Frigate instanceThe Web UI requires an instance of Frigate to interact with for all of its data. You can either run an instance locally (recommended) or attach to a separate instance accessible on your network.
To run the local instance, follow the core development instructions.
If you won't be making any changes to the Frigate HTTP API, you can attach the web development server to any Frigate instance on your network. Skip this step and go to 3a.
#
2. Install dependencies#
3. Run the development server#
3a. Run the development server against a non-local instanceTo run the development server against a non-local instance, you will need to modify the API_HOST default return in web/src/env.js
.
#
4. Making changesThe Web UI is built using Vite, Preact, and Tailwind CSS.
Light guidelines and advice:
- Avoid adding more dependencies. The web UI intends to be lightweight and fast to load.
- Do not make large sweeping changes. Open a discussion on GitHub for any large or architectural ideas.
- Ensure
lint
passes. This command will ensure basic conformance to styles, applying as many automatic fixes as possible, including Prettier formatting.
- Add to unit tests and ensure they pass. As much as possible, you should strive to increase test coverage whenever making changes. This will help ensure features do not accidentally become broken in the future.
- Test in different browsers. Firefox, Chrome, and Safari all have different quirks that make them unique targets to interact with.
#
Documentation#
Prerequisites- Frigate source code
- Node.js 14
#
Making changes#
1. Installation#
2. Local DevelopmentThis command starts a local development server and open up a browser window. Most changes are reflected live without having to restart the server.
The docs are built using Docusaurus v2. Please refer to the Docusaurus docs for more information on how to modify Frigate's documentation.
#
3. Build (optional)This command generates static content into the build
directory and can be served using any static contents hosting service.
#
Official buildsSetup buildx for multiarch