{"id":21894170,"url":"https://github.com/hackgt/bolt","last_synced_at":"2026-01-16T00:57:03.950Z","repository":{"id":42236986,"uuid":"175503003","full_name":"HackGT/bolt","owner":"HackGT","description":"HexLabs' next generation hardware checkout system 🤖","archived":false,"fork":false,"pushed_at":"2024-09-24T05:39:43.000Z","size":3495,"stargazers_count":2,"open_issues_count":60,"forks_count":0,"subscribers_count":4,"default_branch":"chakra-migration","last_synced_at":"2025-04-02T22:11:22.593Z","etag":null,"topics":["frontend","hackathon","hackgt","hardware","hardware-checkout","node","postgresql","prisma","react","typescript"],"latest_commit_sha":null,"homepage":"https://hardware.hexlabs.org","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.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null}},"created_at":"2019-03-13T21:38:53.000Z","updated_at":"2023-10-16T04:19:19.000Z","dependencies_parsed_at":"2023-10-03T05:29:22.354Z","dependency_job_id":"2f3ee034-9b6d-473c-bc50-95ae9712f2bc","html_url":"https://github.com/HackGT/bolt","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/HackGT/bolt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HackGT%2Fbolt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HackGT%2Fbolt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HackGT%2Fbolt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HackGT%2Fbolt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HackGT","download_url":"https://codeload.github.com/HackGT/bolt/tar.gz/refs/heads/chakra-migration","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HackGT%2Fbolt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000824,"owners_count":26082950,"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-09T02:00:07.460Z","response_time":59,"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":["frontend","hackathon","hackgt","hardware","hardware-checkout","node","postgresql","prisma","react","typescript"],"created_at":"2024-11-28T13:19:41.966Z","updated_at":"2025-10-09T06:30:41.399Z","avatar_url":"https://github.com/HackGT.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bolt\n\nSimple and efficient hardware checkout system\n\n# Server setup\n\nRequired items:\n\n- A postrgesql server and database\n- Install dependencies: `yarn install`\n- Configure the required environment variables in `configs/config.json`. You can copy and rename `configs/configs.json.example`.\n- Run the database migrations using `yarn migrate:dev`.\n- Start the server for development with `yarn dev`\n\n# Client setup\n\nNote: the hardware desk page (/admin/desk) relies on a WebSocket connection to the server. The client assumes that you are\nrunning the server on port 3000. If this isn't right, then you'll need to update the port in\n\n1. The `proxy` property in the **client's** package.json file\n2. The local development WebSocket URL in `client/index.tsx`\n3. `baseUrl` in `client/src/components/admin/AdminOverviewContainer.tsx`\n\nto use the correct server port. Make sure you don't commit the files with the changed port!\n\n## Required environment variables\n\n### Backend\n\n| Variable                       | Description                                                                                                                   |\n| ------------------------------ | ----------------------------------------------------------------------------------------------------------------------------- |\n| secrets.adminKey               | Random string of letters and numbers                                                                                          |\n| secrets.session                | Random string of letters and numbers used to secure sessions                                                                  |\n| secrets.groundTruth.url        | URL to [Ground Truth](https://github.com/hackgt/ground-truth) authentication service                                          |\n| secrets.groundTruth.id         | Client ID provided by Ground Truth                                                                                            |\n| secrets.groundTruth.secret     | Client secret provided by Ground Truth                                                                                        |\n| secrets.admins.domains         | Email domains that will result in a user being automatically made an admin                                                    |\n| secrets.admins.emails          | Email address that will result in a user being automatically made an admin                                                    |\n| secrets.server.postgresURL     | URL to connect to the postgresql database. If you need to supply database connection credentials, this is the place to do it. |\n| secrets.server.isProduction    | Boolean indicating whether to run the server in production mode.                                                              |\n| secrets.server.defaultTimezone | Default server timezone                                                                                                       |\n\n### Frontend\n\nIn /client, .env contains defaults for required variables. Create .env.local to override these environment\nvariables, or define them as temporary environment variables in your shell.\n\n| Variable                  | Description                                                                                                                               |\n| ------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |\n| REACT_APP_ENABLE_BUGSNAG  | \"true\" or \"false\" whether to enable the Bugsnag integration. Keep disabled for local development unless testing Bugsnag-specific features |\n| REACT_APP_BUGSNAG_API_KEY | Required if REACT_APP_ENABLE_BUGSNAG is enabled. Value should be the Notifier API Key for the Bugsnag project                             |\n\n# Development\n\n- For local development:\n  - Access server endpoints, such as authentication, using the development server.\n  - For frontend development, run `yarn start` inside the `/client` directory.\n- You can find GraphiQL at `/api/graphiql`, but note that this endpoint is restricted to admin users. For local development,\n  promote your account to an admin in order to access GraphiQL.\n\n## Code Style\n\nCode style is enforced by eslint, prettier, and stylelint via config.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackgt%2Fbolt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhackgt%2Fbolt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackgt%2Fbolt/lists"}