{"id":20832249,"url":"https://github.com/scbd/quick-form","last_synced_at":"2026-04-01T20:27:59.065Z","repository":{"id":226495623,"uuid":"636818727","full_name":"scbd/quick-form","owner":"scbd","description":null,"archived":false,"fork":false,"pushed_at":"2024-03-26T16:17:00.000Z","size":172,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-12-26T21:52:54.861Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/scbd.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}},"created_at":"2023-05-05T18:08:14.000Z","updated_at":"2024-03-26T16:09:33.000Z","dependencies_parsed_at":"2024-03-07T22:26:46.931Z","dependency_job_id":"382f9090-b92d-4a34-9fe7-e152275ef3e9","html_url":"https://github.com/scbd/quick-form","commit_stats":null,"previous_names":["scbd/quick-form"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/scbd/quick-form","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scbd%2Fquick-form","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scbd%2Fquick-form/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scbd%2Fquick-form/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scbd%2Fquick-form/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scbd","download_url":"https://codeload.github.com/scbd/quick-form/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scbd%2Fquick-form/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31291629,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"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":"2024-11-18T00:10:56.645Z","updated_at":"2026-04-01T20:27:59.043Z","avatar_url":"https://github.com/scbd.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Quick Form\nVue component to produce form dynamically based on a schema definition.\n\n## dev\nRuns the code base locally in development. To run on of the different views change the view param in src/main.js.  index.html in the root is the entry file for the server.  Main.js pass options to select api and schema to run.\n\n## preview\nRuns the code base after being built but not as a self embedded component.  Preview uses public/preview/index.html as the entry point template.  However, points directly to dist/dev/es/preview/index.html and uses dist/dev/es/ as the server root.\n\nChange the view param on the fly in dist/dev/es/preview/index.html\n\n## preview-widget \n\nRuns the code base after being built and using the one line self embedding component. Preview-widget uses public/preview/widget/index.html as the entry point template. However, points directly to dist/dev/es/preview/widget/index.html and uses dist/dev/es/ as the server root.\n\nChange the view param on the fly in dist/dev/es/preview/widget/index.html\n\n## release-dev-s3\n1. build\n2. Replace reference to self in dist/import-map.json to s3 location.  '@scbd/idb-views': 'https://scbd-components.s3.amazonaws.com/%40scbd/idb-views%40${version}/dist/widget/index.js'\n3. In src/widget.js pass cdnUrl to WidgetBuilder\n\nTest the widget released on dev\n```\n\u003cscript \n      type = \"module\"\n      src  = \"https://scbd-components.s3.amazonaws.com/%40scbd/idb-views%400.0.2-alpha/dist/widget/index.js?d\"\n      options = \"{ \n                    debug      : true,\n                    baseApiUrl : 'https://api.cbddev.xyz/api',\n                    accountsUrl: 'https://accounts.cbddev.xyz',\n                    year       : 2023,\n                    view       : 'IdbActionsAdmin',\n                    editUrl    : 'https://rjh.bioland.cbddev.xyz/idb-message'\n                  }\"\u003e \n\u003c/script\u003e\n```\n# release\n\nRelease directly to npm for prod.  This need to be removed for ci release on pr.\n\n# clean-reinstall\n\ndeletes all node_modules and reinstalls all dependencies fresh.\n\n\n# options\n\n```\n{ \n  // required by all\n\n    view        : '', // oneOf: [ 'IdbMessages', 'IdbMessagesAdmin','IdbActions', 'IdbActionsAdmin', 'IdbMessagesCommunity', 'IdbActionsCountries' ]\n    baseApiUrl  : 'https://api.cbd.int/api',\n    accountsUrl : 'https://accounts.cbd.int',\n    editUrl     : '', // url that homes edit form component for message or action\n    year        : '', // year of the IDB\n\n  // required by all\n  \n  // required by views: ['IdbMessages','IdbMessagesCommunity']\n\n    order       : [], // defines which types in what order are displayed on IdbMessages and what types not displayed on IdbMessagesCommunity\n\n  // required by views: ['IdbMessages','IdbMessagesCommunity']\n\n  // required by views: ['IdbActionsCountries']\n\n    countryBaseUrl:'https://rjh.bioland.cbddev.xyz/biodiversity-day/celebrations', the base url that will end with a country code https://rjh.bioland.cbddev.xyz/biodiversity-day/celebrations/ca\n\n  // required by views: ['IdbActionsCountries']\n\n  // required by views: ['IdbActions']\n\n  country     : '', // specifies current country to display\n\n  // required by views: ['IdbActions']\n\n  debug       : false\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscbd%2Fquick-form","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscbd%2Fquick-form","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscbd%2Fquick-form/lists"}