{"id":19443775,"url":"https://github.com/aretecode/konsilos","last_synced_at":"2025-08-12T10:04:28.132Z","repository":{"id":40733646,"uuid":"209675684","full_name":"aretecode/konsilos","owner":"aretecode","description":"https://konsilos.com/welcome re-imagined","archived":false,"fork":false,"pushed_at":"2022-12-11T06:41:56.000Z","size":6407,"stargazers_count":2,"open_issues_count":11,"forks_count":0,"subscribers_count":3,"default_branch":"merge","last_synced_at":"2025-02-25T08:16:23.477Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://konsilos.now.sh","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/aretecode.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":"2019-09-20T01:02:26.000Z","updated_at":"2023-03-08T03:42:03.000Z","dependencies_parsed_at":"2023-01-26T17:31:54.032Z","dependency_job_id":null,"html_url":"https://github.com/aretecode/konsilos","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aretecode/konsilos","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aretecode%2Fkonsilos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aretecode%2Fkonsilos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aretecode%2Fkonsilos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aretecode%2Fkonsilos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aretecode","download_url":"https://codeload.github.com/aretecode/konsilos/tar.gz/refs/heads/merge","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aretecode%2Fkonsilos/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270040726,"owners_count":24516684,"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-12T02:00:09.011Z","response_time":80,"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":[],"created_at":"2024-11-10T15:44:07.138Z","updated_at":"2025-08-12T10:04:28.049Z","avatar_url":"https://github.com/aretecode.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Konsilos\n\n**A non-rofit organization.**\nWe created this with good intentions, to scratch our itch, hoping this also would benefit people all over the world.\n\n- site \u0026 app: [https://konsilos.now.sh](https://konsilos.now.sh)\n- storybook: [https://konsilos.now.sh/ui/](https://konsilos.now.sh/ui/)\n- graphql playground: [https://konsilos.now.sh/graphql/](https://konsilos.now.sh/ui/) (_see the [\"everything\" query](./src/graphql/everythingQuery.graphql.ts)_)\n- [TODOS](./TODO.md)\n\n# features\n- deployment to serverless aws lamda (_with ephemeral urls on every pr, and docker setup for custom deploys_)\n- react SPA (_using nextjs, also with service worker / offline support and lighthouse compliance_)\n- oauth on subscribe button, with a SAAS authentication microservice (_using auth2_)\n- storybook for ui development velocity (_aslso available on deployment_)\n- graphql as a micro api connected to airtable (_aslso available on deployment_)\n- images via cdn with webp format (_using sirv_)\n- svg images (_flags, icons, logo_)\n- semantic html, seo including card previews minimal styles (_using styled-components_)\n- custom responsive css devices\n- typescript with all types passing, eslint, prettier, stylelint, editorconfig\n- unit testing with storybook snapshots, react-testing-library\n- i18n translation\n- app domain features\n  - family: add \u0026 view family (_using react hooks, graphql in progress_)\n  - advice: add \u0026 view advice (_using react hooks, graphql in progress_)\n\n## how to run\n\n1. use [vscode](https://code.visualstudio.com/) (_for the best experience_)\n1. use **nodejs** `12.10.0` (_or **latest**_)\n2. `npm i` or `yarn` (_install dependencies_)\n3. go to [env.js](./env.js) file to set your keys\n4. run app or storybook\n  - `yarn dev` (_app_)\n  - `yarn dev:server` (_for using auth0 locally via custom next server_)\n  - `yarn dev:storybook` (_storybook_)\n\n## folder structure\n  - `/pages` contains pages, and the nextjs specific `_app` \u0026 `_document`\n  - `/server` nextjs server using expressjs, added so we can handle route for auth0/user-signin\n  - `/src` all non `page` code\n    - `/components` react components. each component _SHOULD_ have:\n      - `NAME.test.tsx` jest tests\n      - `NAME.story.tsx`\n    - `/features` react components same as ^, but with domain knowledge\n    - `/graphql` graphql specific code (_apollo, queries, mutations_)\n    - `/utils` utils that can be moved to separate packages\n    - `AppStyles` styled components global styles\n    - `AppContext` provided by `pages/_app` via nextjs, available to all components (_things like `url` of the page_)\n    - `typings` typescript definitions\n\n## more scripts\n  - see [package.json](./package.json)\n  - `yarn test` (_jest_)\n  - `yarn lint` (_lint_)\n\n## more information\n- stack:\n  - [nextjs](https://nextjs.org/)\n  - [typescript](https://www.typescriptlang.org)\n  - [react](https://reactjs.org)\n  - [styled-components](https://www.styled-components.com)\n  - [apollo graphql](https://www.apollographql.com/)\n- tool stack:\n  - [jest unit tests](https://jestjs.io)\n  - [storybook](https://storybook.js.org)\n  - [zeit now](https://zeit.co/)\n  - [travis ci](https://travis-ci.org/)\n  - [makefile](https://gist.github.com/isaacs/62a2d1825d04437c6f08)\n  - [yarn](https://yarnpkg.com/lang/en/)\n  - [babeljs](https://babeljs.io)\n  - [docker](https://www.docker.com)\n- formatting \u0026 quality check tools:\n  - [prettier](https://prettier.io/)\n  - [eslint](https://eslint.org)\n  - [stylelint](https://github.com/stylelint/stylelint)\n  - [dangerjs](https://github.com/danger/danger/blob/master/Dangerfile)\n  - [editorconfig](https://editorconfig.org)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faretecode%2Fkonsilos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faretecode%2Fkonsilos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faretecode%2Fkonsilos/lists"}