{"id":15162987,"url":"https://github.com/prdktntwcklr/esp32-webapp","last_synced_at":"2026-02-09T15:02:06.966Z","repository":{"id":253640289,"uuid":"844096751","full_name":"prdktntwcklr/esp32-webapp","owner":"prdktntwcklr","description":"Simple webapp to display info about ESP32 binaries.","archived":false,"fork":false,"pushed_at":"2025-05-04T12:50:29.000Z","size":1239,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-04T13:41:03.912Z","etag":null,"topics":["binaries","esp-idf","esp32","flask","python","webapp"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/prdktntwcklr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-08-18T11:26:17.000Z","updated_at":"2025-05-04T12:50:31.000Z","dependencies_parsed_at":"2024-11-04T07:41:57.421Z","dependency_job_id":"06a3f5cb-c602-40fd-adf9-09f47c91713e","html_url":"https://github.com/prdktntwcklr/esp32-webapp","commit_stats":{"total_commits":13,"total_committers":1,"mean_commits":13.0,"dds":0.0,"last_synced_commit":"4ba6a33026b90296e67dca548e4dfc735d191f07"},"previous_names":["prdktntwcklr/esp32-webapp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/prdktntwcklr/esp32-webapp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prdktntwcklr%2Fesp32-webapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prdktntwcklr%2Fesp32-webapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prdktntwcklr%2Fesp32-webapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prdktntwcklr%2Fesp32-webapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/prdktntwcklr","download_url":"https://codeload.github.com/prdktntwcklr/esp32-webapp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prdktntwcklr%2Fesp32-webapp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267306866,"owners_count":24067039,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-27T02:00:11.917Z","response_time":82,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["binaries","esp-idf","esp32","flask","python","webapp"],"created_at":"2024-09-27T02:02:16.012Z","updated_at":"2026-02-09T15:02:01.948Z","avatar_url":"https://github.com/prdktntwcklr.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ESP32 Web App\r\n\r\nThis is a simple web application to display information about ESP32 binaries.\r\nUsers can upload a binary file and receive information such as the project\r\nname, compile time, and ESP-IDF version directly from within their web browser.\r\n\r\nThe binary analyzer uses the official [espressif/esptool](https://github.com/espressif/esptool)\r\nutility that runs integrated into a Python backend built with Flask.\r\n\r\n## Screenshot\r\n\r\nThe screenshot below shows the output from a successfully analyzed binary.\r\n\r\n![Binary Info Success](docs/esp_webapp_success.png)\r\n\r\n## Project structure\r\n\r\n- `app` - web application built with Flask\r\n- `examples/hello_world` – simple example application for ESP32 that can be\r\nanalyzed\r\n- `tests` - collection of unit and integration tests\r\n\r\n## Using Docker to build the example application for ESP32\r\n\r\nTo avoid having to install the complete `ESP-IDF` toolchain on your machine, you\r\ncan use a pre-built `Docker` image that includes all required dependencies.\r\n\r\nRun the following command from a terminal to build the binaries for the `hello_world`\r\napplication:\r\n\r\n```bash\r\ndocker compose run --rm idf-build\r\n```\r\n\r\nRefer to the [relevant parts of the ESP-IDF documentation](https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/tools/idf-docker-image.html)\r\nfor details on how to use the ESP-IDF Docker image.\r\n\r\n## Running the project locally\r\n\r\nYou can use this project locally on your machine. From within a [Python virtual environment](https://docs.python.org/3/library/venv.html),\r\ninstall the required packages (listed in\r\n[`requirements.txt`](requirements.txt)):\r\n\r\n```bash\r\npip install -r requirements.txt\r\n```\r\n\r\nAnd start the development server by typing:\r\n\r\n```bash\r\nflask run\r\n```\r\n\r\nYou can then visit [http://127.0.0.1:5000/](http://127.0.0.1:5000/) in your\r\nbrowser to try out the application.\r\n\r\n## Tests\r\n\r\nThe application is covered by a set of unit and integration tests. To run\r\nthe tests, execute the following command from the top level directory:\r\n\r\n```bash\r\npytest -v\r\n```\r\n\r\n## CI/CD Pipeline\r\n\r\nBoth the build of the example application and the tests run automatically as\r\npart of a CI/CD pipeline on every pull request. See [`.github/workflows/main.yml`](.github/workflows/main.yml)\r\nfor details.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprdktntwcklr%2Fesp32-webapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprdktntwcklr%2Fesp32-webapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprdktntwcklr%2Fesp32-webapp/lists"}