{"id":21894103,"url":"https://github.com/hackgt/checkin2","last_synced_at":"2026-04-10T00:44:20.067Z","repository":{"id":15863693,"uuid":"78793790","full_name":"HackGT/checkin2","owner":"HackGT","description":"Simple and robust check in system for hackathons and other events. Integrates with HackGT/registration","archived":false,"fork":false,"pushed_at":"2022-12-30T17:05:28.000Z","size":3372,"stargazers_count":7,"open_issues_count":33,"forks_count":1,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-10-14T03:24:02.971Z","etag":null,"topics":["check-in","event-management","georiga-tech","hackathon","hackgt","mongodb","typescript"],"latest_commit_sha":null,"homepage":"https://checkin.hack.gt","language":"TypeScript","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/HackGT.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}},"created_at":"2017-01-12T22:45:00.000Z","updated_at":"2021-03-08T16:25:45.000Z","dependencies_parsed_at":"2023-01-11T19:13:04.236Z","dependency_job_id":null,"html_url":"https://github.com/HackGT/checkin2","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/HackGT/checkin2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HackGT%2Fcheckin2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HackGT%2Fcheckin2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HackGT%2Fcheckin2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HackGT%2Fcheckin2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HackGT","download_url":"https://codeload.github.com/HackGT/checkin2/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HackGT%2Fcheckin2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279017786,"owners_count":26086144,"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-10-14T02:00:06.444Z","response_time":60,"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":["check-in","event-management","georiga-tech","hackathon","hackgt","mongodb","typescript"],"created_at":"2024-11-28T13:18:54.686Z","updated_at":"2025-10-14T03:24:03.346Z","avatar_url":"https://github.com/HackGT.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Checkin\n\n\u003ca href=\"https://zenhub.com\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/ZenHubIO/support/master/zenhub-badge.png\"\u003e\u003c/a\u003e\n\n**Simple, robust, and mobile-friendly check in system for hackathons and other events. Capable of handling many concurrent events and displaying updates in real-time.**\n\nOriginally designed and built for HackGT events.\n\n![Check in](https://i.imgur.com/swDTnGI.png)\n\n## Usage\nThe check in interface is divided into several sections that can be switched between from the flyout side menu:\n\n- Main check in interface (*shown above*)\n- Choose check in tag (*integrated into the menu*)\n- Import users\n- Delete check in tag (*integrated into the menu*)\n- Manage and configure users\n\nCheck in status is kept synchronized across multiple open instances in real-time using WebSockets.\n\n## Installation and Deployment\nA [Dockerfile](Dockerfile) is provided for convenience.\n\n    npm install # Install required dependencies\n    npm run build # Compile\n    npm test # Optional: run tests\n    npm start\n\nYou can also run `npm run build-start` to quickly compile and then start Checkin.  If running on Windows, you'll need to complete these steps in Bash on Ubuntu on Windows or in a Linux virtual machine since the compile process involves running a bash script.\n\nEnvironment Variable | Description\n---------------------|------------\nADMIN_KEY_SECRET | API key for an admin account in the specified instance of [registration](https://github.com/hackgt/registration)\nREGISTRATION_GRAPHQL | URL for the [registration](https://github.com/hackgt/registration) instance GraphQL API to connect to (e.g., https://registation.hack.gt/graphql)\nPORT | The port the check in system should run on (default: `3000`)\nMONGO_URL | The URL to the MongoDB server including the database (default: `mongodb://localhost/checkin`)\n\nOn first start up, the server will automatically generate a default user with which to log in and add users and print the credentials to STOUT. **Make sure to delete this user or change its password from the default once you are done.**\n\nBecause the server is not configured to serve over HTTPS, you'll want to set up some kind of reverse-proxy server like [Nginx](http://nginx.org/) in production.\n\n## Testing\nThis project is using [Mocha](https://mochajs.org/) for unit testing. Currently, the tests only cover the server and the API.\n\nThe unit tests require a locally running MongoDB server. The tests are designed to and *should* leave the database unaffected after completion and succeed even with the presence of existing data. Please file a new issue if this behavior is not observed. Running on an production database is still strongly discouraged, however.\n\nTo run the tests (from the project's root directory):\n\n    npm install # Install required dependencies (including development dependencies)\n    npm install -g typescript # Install the TypeScript compiler\n    npm test # Compile and run the unit tests\n\nIf adding or changing API endpoints (see the [Contributing](#contributing) section below), please write new tests or edit existing tests to retain 100% coverage.\n\n## Contributing\nDevelopment is organized using [Git Flow](http://nvie.com/posts/a-successful-git-branching-model/). All development work should occur on the `develop` branch and merged into `master` and tagged with the version  when production ready. Only ready-to-ship code should be merged into the `master` branch.\n\nTry to follow existing coding styles and conventions. For example, use TypeScript's [type annotations](http://www.typescriptlang.org/docs/handbook/basic-types.html) whenever possible and Promises for asyncronous operations in conjunction with ES7 async/await (TypeScript's transpilation allows for the use of these features even on platforms that don't support or entirely support ES6 and ES7).\n\n[Strict null-checking](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-2-0.html) is enabled in the `tsconfig.json` which might make some vanilla JavaScript code fail to compile unless minor changes are made.\n\n## License\nCopyright \u0026copy; 2017 HackGT. Released under the MIT license. See [LICENSE](LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackgt%2Fcheckin2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhackgt%2Fcheckin2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackgt%2Fcheckin2/lists"}