{"id":28373718,"url":"https://github.com/pyronear/new-pyro-platform","last_synced_at":"2026-04-28T23:01:14.605Z","repository":{"id":293259462,"uuid":"979347376","full_name":"pyronear/new-pyro-platform","owner":"pyronear","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-11T20:11:15.000Z","size":962,"stargazers_count":1,"open_issues_count":25,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-11T20:28:37.814Z","etag":null,"topics":["material-ui","react"],"latest_commit_sha":null,"homepage":"https://new-pyro-platform.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pyronear.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-05-07T11:26:34.000Z","updated_at":"2026-01-08T12:24:53.000Z","dependencies_parsed_at":"2025-05-14T13:38:20.264Z","dependency_job_id":"93271fb7-3593-4136-bed8-248fa3ef077f","html_url":"https://github.com/pyronear/new-pyro-platform","commit_stats":null,"previous_names":["pyronear/new-pyro-platform"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pyronear/new-pyro-platform","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyronear%2Fnew-pyro-platform","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyronear%2Fnew-pyro-platform/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyronear%2Fnew-pyro-platform/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyronear%2Fnew-pyro-platform/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pyronear","download_url":"https://codeload.github.com/pyronear/new-pyro-platform/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyronear%2Fnew-pyro-platform/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28641293,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T18:04:35.752Z","status":"ssl_error","status_checked_at":"2026-01-21T18:03:55.054Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["material-ui","react"],"created_at":"2025-05-29T20:11:48.448Z","updated_at":"2026-04-28T23:01:14.597Z","avatar_url":"https://github.com/pyronear.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# New pyronear platform\n\n## Global description of the project\n\nSee [Description](./docs/repo_documentation.md)\n\n## Local setup\n\n_In case you just want to run the project with docker, follow [dedicated steps](#run-with-docker)._\n\n### 1. Install nodejs\n\nThe node version is specified in `./.nvmrc` file\nWe strongly recommend to use a version manager to deal with node version, rather than downloading directly node\n(easier in case of updates)\n\n**Option A : fnm**\nUse `fnm` to ensure you always use the correct node version:\n\n```bash\ncurl -fsSL https://fnm.vercel.app/install | bash\n```\n\nReload your terminal and go back to this folder. It should prompt you to download the correct Node version.\nIf that's not the case, simply run `fnm install` (it download the version specified in the file ./.nvmrc ).\n\n**Option B : nvm**\nSee github repo to know how to install it\nThen execute\n\n```bash\nnvm use {NODE_VERSION}\n```\n\n### 2. Install pnpm\n\nIn this project we use pnpm rather the default package manager npm\n\nExecute the following command:\n\n```bash\nnpm install -g pnpm\n```\n\n### 3. Install project dependencies\n\nInstall all dependencies with pnpm:\n\n```bash\npnpm install\n```\n\nIt should create a `/node_modules`directory\n\n### 4. Configure .env file\n\nYou'll need a valid .env file to run this app properly.\n\n- Duplicate the file `/public/config/app-config.js`and rename it `/public/config/app-config-dev.js`\n- In `/public/config/app-config-dev.js`, fill the local parameters\n  - API_URL\n  - LIVE_STREAMING_MEDIA_URL\n\nNote to configure the parameter `API_URL` in `/config/app-config-dev.js` file:\n\n- Use an existing API (staging, or prod if you're brave)\n- OR you can run the [Pyronear Dev Environment](https://github.com/pyronear/pyro-envdev) locally\n\n**Keep in mind to synchronize your app-config-dev.js file with app-config-example.js :**\n**If new properties are added to the app-config-dev.js file, it must be also added to your file app-config-local.js**\n\n### 5. Run the project !\n\nYou should now be able to run the website locally with\n\n```bash\npnpm run dev\n```\n\n**Once the setup is done, next time you want to run the app, you need to execute only the last step**\n\n## Run with Docker\n\n1. Follow step 4 of the previous section \" 4. Configure .env file\"\n2. Run the project with\n\n```bash\ndocker compose up -d\n```\n\n## Contributing\n\nThe code is formatted by prettier and eslint. Please download those extensions in your IDEA to enable automatic formatting on save.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyronear%2Fnew-pyro-platform","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpyronear%2Fnew-pyro-platform","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyronear%2Fnew-pyro-platform/lists"}