{"id":19038631,"url":"https://github.com/garyhtou/form-burrito","last_synced_at":"2025-07-26T08:37:52.654Z","repository":{"id":152165778,"uuid":"291189439","full_name":"garyhtou/Form-Burrito","owner":"garyhtou","description":"Custom domain for your forms. Wrap your forms in your own domain 🌯","archived":false,"fork":false,"pushed_at":"2020-12-20T11:21:58.000Z","size":510,"stargazers_count":5,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-25T02:04:55.423Z","etag":null,"topics":["airtable","ant-design","custom-domain","embed","firebase","form","form-burrito","forms","google-forms","react","static-site","surveymonkey","typeform","website"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/garyhtou.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":"2020-08-29T02:57:00.000Z","updated_at":"2023-07-19T15:19:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"05aff581-5165-47c3-a7d3-58c97bbc6450","html_url":"https://github.com/garyhtou/Form-Burrito","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/garyhtou/Form-Burrito","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garyhtou%2FForm-Burrito","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garyhtou%2FForm-Burrito/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garyhtou%2FForm-Burrito/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garyhtou%2FForm-Burrito/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/garyhtou","download_url":"https://codeload.github.com/garyhtou/Form-Burrito/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garyhtou%2FForm-Burrito/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267141102,"owners_count":24041979,"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-26T02:00:08.937Z","response_time":62,"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":["airtable","ant-design","custom-domain","embed","firebase","form","form-burrito","forms","google-forms","react","static-site","surveymonkey","typeform","website"],"created_at":"2024-11-08T22:04:22.063Z","updated_at":"2025-07-26T08:37:52.627Z","avatar_url":"https://github.com/garyhtou.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Form Burrito (WIP)\n\nSeamless custom domains/urls for your Google Forms, Typeforms, and others!.\n\nA React app that embeds your forms on your domain and uses Firebase for auth and database.\n\n## Firebase Realtime Database\n\n**Rules**\n\n```json\n{\n\t\"rules\": {\n\t\t\".read\": false,\n\t\t\".write\": false,\n\t\t\"urls\": {\n\t\t\t\".read\": true,\n\t\t\t\".write\": \"auth != null \u0026\u0026 root.child('admins/' + auth.uid).exists() \u0026\u0026 root.child('admins/' + auth.uid).val() === true\",\n\t\t\t\"$pushKey\": {\n\t\t\t\t\".validate\": \"newData.hasChildren(['short', 'full', 'type', 'time'])\"\n\t\t\t}\n\t\t},\n\t\t\"admins\": {\n\t\t\t\".read\": \"auth != null\",\n\t\t\t\".write\": \"!root.child('admins').exists() || (auth != null \u0026\u0026 root.child('admins/' + auth.uid).exists() \u0026\u0026 root.child('admins/' + auth.uid).val() === true)\",\n\t\t\t\"$uid\": {\n\t\t\t\t\".validate\": \"newData.val() === true || newData.val() === false\"\n\t\t\t}\n\t\t},\n\t\t\"users\": {\n\t\t\t\".read\": \"auth != null \u0026\u0026 root.child('admins/' + auth.uid).exists() \u0026\u0026 root.child('admins/' + auth.uid).val() === true\",\n\t\t\t\".write\": false,\n\t\t\t\"$uid\": {\n\t\t\t\t\".write\": \"auth != null \u0026\u0026 $uid === auth.uid\",\n\t\t\t\t\".read\": \"auth != null \u0026\u0026 $uid === auth.uid\"\n\t\t\t}\n\t\t},\n\n\t\t\"settings\": {\n\t\t\t\".read\": \"auth != null \u0026\u0026 root.child('admins/' + auth.uid).exists() \u0026\u0026 root.child('admins/' + auth.uid).val() === true\",\n\t\t\t\".write\": \"auth != null \u0026\u0026 root.child('admins/' + auth.uid).exists() \u0026\u0026 root.child('admins/' + auth.uid).val() === true\"\n\t\t}\n\t}\n}\n```\n\nPortion of Burrito in Logo is designed by [Freepik](www.freepik.com)\n\nhttps://www.freepik.com/free-vector/kawaii-fast-food-cute-burrito-taco_5769136.htm#page=1\u0026query=burrito\u0026position=6\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgaryhtou%2Fform-burrito","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgaryhtou%2Fform-burrito","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgaryhtou%2Fform-burrito/lists"}