{"id":39005304,"url":"https://github.com/celenium-io/celenium-interface","last_synced_at":"2026-01-17T17:16:32.303Z","repository":{"id":203073280,"uuid":"706270591","full_name":"celenium-io/celenium-interface","owner":"celenium-io","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-22T11:31:04.000Z","size":17761,"stargazers_count":25,"open_issues_count":2,"forks_count":13,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-12-23T22:43:40.648Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://celenium.io","language":"Vue","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/celenium-io.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":"2023-10-17T16:07:02.000Z","updated_at":"2025-12-09T14:14:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"604071b5-18c7-412c-a3c9-198baa8350ef","html_url":"https://github.com/celenium-io/celenium-interface","commit_stats":null,"previous_names":["celenium-io/celenium-interface"],"tags_count":27,"template":false,"template_full_name":null,"purl":"pkg:github/celenium-io/celenium-interface","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celenium-io%2Fcelenium-interface","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celenium-io%2Fcelenium-interface/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celenium-io%2Fcelenium-interface/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celenium-io%2Fcelenium-interface/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/celenium-io","download_url":"https://codeload.github.com/celenium-io/celenium-interface/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celenium-io%2Fcelenium-interface/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28512238,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T13:38:16.342Z","status":"ssl_error","status_checked_at":"2026-01-17T13:37:44.060Z","response_time":85,"last_error":"SSL_read: 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":[],"created_at":"2026-01-17T17:16:31.541Z","updated_at":"2026-01-17T17:16:32.277Z","avatar_url":"https://github.com/celenium-io.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"### Official Deployment\n\n-   Production: [celenium.io](https://celenium.io)\n-   Development: [dev.celenium.io](https://dev.celenium.io)\n\n### Local Setup\n\nClone the repository and run on the root folder:\n\n```\npnpm i\npnpm dev\n```\n### Node.js Server\n\nWhen running `nuxt build` with the Node server preset, the result will be an entry point that launches a ready-to-run Node server.\n\n```\nnode .output/server/index.mjs\n```\n\nThis will launch your production Nuxt server that listens on port 3000 by default.\n\nTo use `pm2`, use an `ecosystem.config.js`:\n\n```js\nmodule.exports = {\n\tapps: [\n\t\t{\n\t\t\tname: \"CeleniumInterface\",\n\t\t\tport: \"3000\",\n\t\t\texec_mode: \"cluster\",\n\t\t\tinstances: \"max\",\n\t\t\tscript: \"./.output/server/index.mjs\",\n\t\t},\n\t],\n}\n```\n\nAlso, you can use different [presets](https://nuxt.com/docs/getting-started/deployment#hosting-providers). E.g. **Cloudflare Pages**: `cloudflare_pages`.\n\nNote, some providers do not support server-side rendering.\n\n---\n\n### Docker Setup\n\nYou can also run the application in Docker.\nBuild the image and run the container:\n```\ndocker build -t celenium-app\ndocker run -p 3000:3000 --env-file .env celenium-app\n```\nMake sure to create a ```.env``` file in the root directory or pass the required environment variables directly with ```-e```.\n\n### Run with Docker Compose  \nStart with:\n```\ndocker-compose up -d\n```\n\nBy default:  \n- Builds the image from the local `Dockerfile`  \n- Runs the app on `127.0.0.1:3000`  \n- Automatically restarts the container on failure  \n- Uses `npm run start` as the startup command  \n- Limits logs (10 MB per file, max 5 files)  \n\nIf you want to use a prebuilt image from **GitHub Container Registry**, specify a tag:  \n- `TAG=latest docker-compose up -d`  \n\n---\n\n### Environment Variables\n\n#### Required for App Startup\n- **NUXT_PUBLIC_API_DEV** — indexer API (e.g. `https://api.localhost:9876/v1`).\n- **NUXT_PUBLIC_WSS_DEV** — webSocket endpoint (e.g. `wss://api.localhost:9876/v1/ws`).\n- **NUXT_PUBLIC_SELFHOSTED** — set to `true` when running in self-hosted mode.\n\n#### Blobstream Configuration\n- **NUXT_PUBLIC_BLOBSTREAM_MAINNET** — API for blobstream data.\n\n#### Faucet Configuration\n- **NUXT_PUBLIC_FAUCET_ADDRESS** — faucet address.\n- **NUXT_PUBLIC_FAUCET_MOCHA** — faucet API for the Mocha network.\n- **NUXT_PUBLIC_FAUCET_ARABICA** — faucet API for the Arabica network.\n\n#### External Services Configuration\n- **NUXT_PUBLIC_BLOCKSCOUT** — used to check whether a batch exists in Blockscout. If found, a dedicated button will appear on the blob form/page.\n- **NUXT_PUBLIC_NODE_STATS** — provides statistics about node types, versions, and geographic distribution across the Celestia ecosystem.\n- **NUXT_PUBLIC_QUOTE** — provides price data. It is used to display the current TIA price in the header and to convert all values from TIA to USD.\n- **NUXT_PUBLIC_ROLLUP_RANKING** — fetches rollup ranking data displayed on the rollup leaderboard, individual rollup pages, and a dedicated rollup ranking page. The ranking page also includes detailed calculations, as well as repository and commit statistics.  \n- **NUXT_PUBLIC_GITHUB** — required for retrieving repository statistics on a rollup ranking page.\n- **NUXT_PUBLIC_TVL** — provides TVL (Total Value Locked) statistics for rollups and TVS (Total Value Secured) for the Celestia network. These values are displayed in the header, on the statistics page, and on individual rollup pages.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcelenium-io%2Fcelenium-interface","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcelenium-io%2Fcelenium-interface","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcelenium-io%2Fcelenium-interface/lists"}