-
-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge dev with main #41
Conversation
Refactor loading custom species confidence
Add error handling and print error message when reading species confi…
This commit refactors the code related to loading the custom species confidence configuration from a CSV file. The `LoadCustomSpeciesConfidence` function has been renamed to `LoadSpeciesConfig` to better reflect its purpose. The function now uses the `csv.Reader` to read the CSV file and processes the records to populate the `SpeciesConfig` struct. The code has also been updated to handle file not found scenarios and skip malformed lines in the CSV file. This change improves the readability and maintainability of the code.
…nding values in updateconfig.go
Major refactor with http server and web gui
…atabase optimize on closing
… and print instructions for a fix
This change allows for BirdNET-Go to be built and bundled into a container. The container will by default execute the realtime command, starting the server.
Add initial Dockerfile setup
Speeds up the copy process since the git history is not of interest while building the image.
The workflow job will for every new commit to the main branch, build and push a docker image to the latest tag. The latest tag will get overwritten each commmit.
The standard for docker images is to have configuration related files under /config. This makes it really easy for end users to setup persistent storage for the config itself. It also allows for easier use of configmaps in kubernetes. This is accomplished by creating a symlink from the default storage location of BirdNET-GO to the path /config.
The standard for docker images is to have data related files under /data. This makes it really easy for end users to setup persistent storage for the data itself. This is accomplished by setting the workdir to /data ensuring that the BirdNET-GO is executed from /data and storing for example the database there.
Add basic github action for building docker image
Define docker volumes & add docker documentation
…tead of full audio context restart
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
No description provided.