https://github.com/scientifichackers/firmware-release-server
A firmware release management service for IOT devices and friends
https://github.com/scientifichackers/firmware-release-server
Last synced: over 1 year ago
JSON representation
A firmware release management service for IOT devices and friends
- Host: GitHub
- URL: https://github.com/scientifichackers/firmware-release-server
- Owner: scientifichackers
- License: mit
- Created: 2019-04-26T00:17:32.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-04-22T21:13:46.000Z (about 4 years ago)
- Last Synced: 2025-01-25T00:28:12.471Z (over 1 year ago)
- Language: Python
- Size: 10.3 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.jaaga.in/labs)
# Firmware Release Server
A firmware release management service for IOT devices and friends.
Originally developed for use with [Joovv](https://joovv.com/).
## Why?
This makes OTA updates a pleasure.
Your hardware engineer now has a proper place to upload their releases,
and your app can determine whether an update is required or not, by making trivial API calls.
## What?
Underneath is an extremely simple django application that allows uploading firmware images using the admin panel

And makes the releases accesbile to devices by simple APIs
`GET http:///api/latest-after/0.3.5/`
```json
{
"version": "1.0.0",
"firmware_bin": "http:///media/firmware_uploads/1.0.0/firmware_1w0H51u.bin",
"bootloader_bin": "http:///media/firmware_uploads/1.0.0/bootloader.bin",
"partitions_bin": "http:///media/firmware_uploads/1.0.0/partitions.bin",
"comments": "fixed the timestamp issues",
"uploaded_at": "2019-04-25T23:45:16.777279Z"
}
```
`GET http:///api/latest/` also works.
## Deployment
This project ships out of the box for deploying to [caprover](https://caprover.com/).
- Install caprover
- Create a new app. Make sure to turn on "Has Persistent Data"
- Add persistent directory.

- Add env vars

You should be good to go now!