{"id":19030806,"url":"https://github.com/hackclub/assemble-register","last_synced_at":"2025-08-02T21:06:12.090Z","repository":{"id":74143331,"uuid":"497582557","full_name":"hackclub/assemble-register","owner":"hackclub","description":"📝 Registration form used for Assemble. Built using Next.js, Theme UI \u0026 Airtable.","archived":false,"fork":false,"pushed_at":"2023-05-16T14:03:06.000Z","size":9088,"stargazers_count":5,"open_issues_count":0,"forks_count":3,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-07-15T07:33:50.351Z","etag":null,"topics":["assemble","assemble-hackclub"],"latest_commit_sha":null,"homepage":"https://register.assemble.hackclub.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hackclub.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2022-05-29T12:21:07.000Z","updated_at":"2024-07-30T02:00:36.000Z","dependencies_parsed_at":"2023-07-11T10:46:17.940Z","dependency_job_id":null,"html_url":"https://github.com/hackclub/assemble-register","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/hackclub/assemble-register","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackclub%2Fassemble-register","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackclub%2Fassemble-register/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackclub%2Fassemble-register/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackclub%2Fassemble-register/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hackclub","download_url":"https://codeload.github.com/hackclub/assemble-register/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackclub%2Fassemble-register/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268454335,"owners_count":24253152,"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-08-02T02:00:12.353Z","response_time":74,"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":["assemble","assemble-hackclub"],"created_at":"2024-11-08T21:19:38.656Z","updated_at":"2025-08-02T21:06:12.031Z","avatar_url":"https://github.com/hackclub.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Register\nThis is the registration form that was used for [Assemble!](https://github.com/hackclub/assemble)\n\n## Setup\n\n1. Clone the repository and enter it\n```\ngit clone https://github.com/hackclub/www-assemble-register.git\ncd www-assemble-register\n```\n2. Install packages\n```\nyarn\n```\nor\n```\nnpm install\n```\n3. Change questions to your liking\nLocate `lib/manifest.json` and edit/add/remove questions to your liking. For more information about `manifest.json`, click [here](https://github.com/hackclub/www-assemble-register#manifest)\n\n4. Add environment variables and customize\nAdd a `.env` file with your AirTable API key set to the variable `AIRTABLE`. [How do I get my API key?](https://support.airtable.com/hc/en-us/articles/219046777-How-do-I-get-my-API-key-)\nLocate `lib/airtable.js` and change the `registrationsAirtable` baseID to your Airtable base ID, which is found in your Airtable URL and usually starts with `app`.\n\n5. Enable submissions\nLocate `pages/index.js` and set `disabled={false}` for the last `\u003cButton\u003e` element on the page.\n\n6. Add necessary fields to Airtable\nCreate a new table called `Registrations`.  \nAdd fields/columns with names that match up with the `key` value for each question in `manifest.json`. Make sure the column type matches up with question type in `manifest.json`\n\n6. Run\n```\nyarn dev\n```\nor\n```\nnpm run dev\n```\n\n## Manifest\nManifest is composed of an array called questions with each element inside the array representing a section of the form.  \n`header` **string** is the header that is displayed at the top of the section.  \n`items` **Array\\\u003cQuestion\\\u003e** is an array that contains the questions.  \n\n#### Questions\n`key` **string** REQUIRED must match the name of an Airtable column in `Registrations`\u003cbr/\u003e\n![image](https://user-images.githubusercontent.com/66806100/184732849-8c2baa61-c9a5-4416-b38e-03867dd2975d.png)\n`label` **string** is what is shown to the user  \n`sublabel` **string** is a secondary label/description of the field  \n`type` **string** REQUIRED determines what type of input field the user will see.  \n    `string` input  \n    `paragraph` textarea  \n    `checkbox` checkbox  \n    `select` select  \n`inputType` **string** specifies validation with `type=VALUE`  \n    `email` email validation  \n`placeholder` **string** is a placeholder  \n`options` **Array\\\u003cstring\\\u003e** is used when `select` is specified as a input type  \n`optional` **boolean** determines if the input field is optional  \n`check` **function(data)**  \n    `data` is an object that contains all the other question values. Ex. data\\[\"Travel Stipends\"\\] pulls the value of the question with \"Travel Stipends\" as the `key`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackclub%2Fassemble-register","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhackclub%2Fassemble-register","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackclub%2Fassemble-register/lists"}