{"id":27603782,"url":"https://github.com/aragon/app-cms","last_synced_at":"2026-01-29T09:41:13.745Z","repository":{"id":281658688,"uuid":"945981266","full_name":"aragon/app-cms","owner":"aragon","description":"Data repository for the Aragon application.","archived":false,"fork":false,"pushed_at":"2025-09-29T13:42:17.000Z","size":42,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-09-29T15:31:50.754Z","etag":null,"topics":["aragon","cms","dao"],"latest_commit_sha":null,"homepage":"https://app.aragon.org","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aragon.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-03-10T12:33:20.000Z","updated_at":"2025-09-29T13:42:19.000Z","dependencies_parsed_at":"2025-05-26T20:06:21.230Z","dependency_job_id":"3cefefc8-2b23-4078-b0fa-fab35e8a0fc1","html_url":"https://github.com/aragon/app-cms","commit_stats":null,"previous_names":["aragon/featured-daos","aragon/app-cms"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aragon/app-cms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aragon%2Fapp-cms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aragon%2Fapp-cms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aragon%2Fapp-cms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aragon%2Fapp-cms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aragon","download_url":"https://codeload.github.com/aragon/app-cms/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aragon%2Fapp-cms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28874235,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T07:35:32.468Z","status":"ssl_error","status_checked_at":"2026-01-29T07:33:31.463Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["aragon","cms","dao"],"created_at":"2025-04-22T19:19:26.743Z","updated_at":"2026-01-29T09:41:13.735Z","avatar_url":"https://github.com/aragon.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Aragon App CMS\n\nThis repository stores dynamic data consumed by the [Aragon application](https://app.aragon.org).\nIt provides up-to-date information such as **featured DAOs** and **sanctioned addresses**.\n\n## Featured DAOs\n\nThe list of featured DAOs is available at:\n[**featured-daos.json**](https://raw.githubusercontent.com/aragon/app-cms/main/featured-daos.json)\n\n### Data Structure\n\nEach DAO entry is a JSON object with the following fields:\n\n| Field            | Required | Description                        | Notes                                                                  |\n| ---------------- | -------- | ---------------------------------- | ---------------------------------------------------------------------- |\n| **name**         | ✅       | DAO name                           | —                                                                      |\n| **description**  | ✅       | Brief description of the DAO       | —                                                                      |\n| **logo**         | ✅       | URL to the DAO’s logo image        | —                                                                      |\n| **network**      | ❌       | Network where the DAO is deployed  | Required if the network is supported by the Aragon application         |\n| **networkLabel** | ❌       | Human-readable network name        | Required if the network is **not** supported by the Aragon application |\n| **address**      | ❌       | On-chain DAO contract address      | Required if the DAO is supported by the Aragon application             |\n| **ens**          | ❌       | ENS name of the DAO                | Required if the DAO is supported by the Aragon application             |\n| **overrideUrl**  | ❌       | External link to the DAO’s website | Required if the DAO is **not** supported by the Aragon application     |\n\n## Sanctioned Addresses\n\nThe list of sanctioned addresses is available at:\n[**sanctioned-addresses.json**](https://raw.githubusercontent.com/aragon/app-cms/main/sanctioned-addresses.json)\n\nThis list is used to identify blockchain addresses that are restricted from accessing certain features of the Aragon application.\nThe list is derived from the official [OFAC Specially Designated Nationals (SDN) List](https://sanctionslist.ofac.treas.gov/Home/SdnList).\n\n## Feature Flags\n\nFeature flags allow controlling feature visibility across different environments without code changes.\n\nThe feature flags configuration is available at:\n[**feature-flags.json**](https://github.com/aragon/app-cms/blob/main/feature-flags.json)\n\n### Data Structure\n\nFeature flags can be configured in three formats:\n\n#### 1. Simple format (same value for all environments)\n\n```json\n{\n    \"subDao\": true\n}\n```\n\n#### 2. Environment-specific format\n\n```json\n{\n    \"subDao\": {\n        \"local\": true,\n        \"preview\": false,\n        \"development\": false,\n        \"staging\": false,\n        \"production\": false\n    }\n}\n```\n\n#### 3. Mixed format\n\n```json\n{\n    \"debugPanel\": true,\n    \"subDao\": {\n        \"local\": true,\n        \"preview\": false,\n        \"production\": false\n    }\n}\n```\n\n### Supported Environments\n\n-   `local` - Local development\n-   `preview` - Preview deployments\n-   `development` - Development environment\n-   `staging` - Staging environment\n-   `production` - Production environment\n\n### How It Works\n\n1. Feature flags are first defined in code with default values\n2. CMS overrides can modify these defaults per environment\n3. Local cookie-based overrides (for debugging) take highest priority\n\n**Priority order:**\n\n```\nLocal override (cookie) \u003e CMS override \u003e Environment-specific (code) \u003e Default (code)\n```\n\n### Adding a New Flag\n\n1. The flag must first be defined in the codebase (`featureFlags.config.ts`)\n2. The flag key must be added to the `FeatureFlagKey` type\n3. Optionally, add the flag to this CMS file to override defaults\n\nFor more details, see the [Feature Flags README](https://github.com/aragon/app/src/shared/utils/featureFlags/README.md) in the application codebase.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faragon%2Fapp-cms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faragon%2Fapp-cms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faragon%2Fapp-cms/lists"}