├── .editorconfig ├── .gitattributes ├── .github ├── config.yml ├── renovate.json └── workflows │ ├── auto_update_npm_updates.yml │ ├── format.yml │ └── spelling.yml ├── .gitignore ├── .prettierrc ├── .typos.toml ├── .vitepress ├── .gitignore ├── README.md ├── config.mts └── theme │ ├── index.ts │ ├── style.css │ └── tailwind.css ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── development ├── README.md └── library │ ├── back-end │ ├── conventions--laravel.md │ ├── conventions--php.md │ └── conventions--sql.md │ └── front-end │ ├── conventions--css.md │ ├── conventions--js.md │ ├── conventions--jsdoc.md │ └── conventions--vue.md ├── guides ├── OKR │ ├── 00-benefits-of-okrs.md │ ├── 00-history-of-okrs.md │ ├── 00-why-okrs.md │ ├── 01-okr-cadence.md │ ├── 02-cascading-okrs.md │ ├── 03-create-your-okrs.md │ ├── 04-stay-aligned-as-a-team.md │ ├── 05-assess-your-okrs.md │ └── README.md ├── collaboration-tools.md ├── onboarding │ ├── README.md │ ├── onboarding--buddyGuide.md │ └── onboarding--domain-knowledge.md ├── people-operations │ ├── team-trips.md │ └── video-calls.md └── roles │ ├── senior-developer.md │ └── support-engineer.md ├── images ├── 10-okr-benefits-part-1.svg ├── 11-okr-benefits-part-2.svg ├── 12-okr-benefits-part-3.svg ├── 14-okr-quarter-part-1.svg ├── 15-okr-quarter-part-2.svg ├── 16-okr-year-and-quarter-part-1.svg ├── 17-okr-year-and-quarter-part-2.svg ├── 18-okr-year.svg ├── 19-okr-pillars.svg ├── 20-how-we-use-okrs-in-teams.svg ├── 21-transparency.svg ├── 22-okr-checklist.svg ├── 24-okr-cascade-part-1.svg ├── 25-okr-cascade-part-2.svg ├── 26-okr-quarter-reference.svg ├── 27-okr-spreadsheet-part-1.svg ├── 28-okr-spreadsheet-part-2.svg ├── 29-okr-spreadsheet-part-3.svg ├── 30-okr-spreadsheet-part-4.svg ├── 31-okr-spreadsheet-part-5.svg ├── 33-smart-okrs.svg ├── 34-quarterly-meeting.svg ├── 35-sprint-planning-prep.svg ├── 36-sprint-planning-meeting.svg ├── 37-daily-standup.svg ├── 38-one-to-one-checkin-prep.svg ├── 39-team-checkin.svg ├── 42-end-of-quarter-meeting-metrics.svg ├── 43-end-of-quarter-meeting-team.svg ├── 45-okr-history-people.svg ├── 46-okr-history-timeline.svg ├── 5-alignment.svg ├── 6-okr-part-1.svg ├── 7-okr-part-2.svg ├── 8-okr-examples.svg ├── agile-organization.svg ├── agile-software.svg ├── agile-sprints.svg ├── agile-teams.svg ├── continuous-delivery.svg ├── delivery-criteria.svg ├── discovery-delivery-sprints.svg ├── helpful-agile-terms.svg ├── hero-all-v2.svg ├── hero-all.svg ├── hero-content.svg ├── hero-coordination.svg ├── hero-design.svg ├── hero-dev.svg ├── hero-development.svg ├── hero-process.svg ├── hero-product.svg ├── hero-purpose.svg ├── issue-types.svg ├── new-product-process.svg └── scrum-board.svg ├── index.md ├── library ├── backend │ ├── README.md │ ├── SOLID.md │ ├── clean-code-php.md │ ├── conventions--laravel.md │ ├── conventions--php.md │ ├── conventions--sql.md │ └── literature.md └── frontend │ ├── README.md │ ├── clean-code-js.md │ ├── conventions--css.md │ ├── conventions--js.md │ ├── conventions--jsdoc.md │ ├── conventions--vuejs.md │ ├── literature.md │ └── use-the-platform.md ├── outdated ├── achieve-purpose │ ├── README.md │ ├── mission.md │ └── vision.md ├── design-products │ ├── README.md │ ├── delivery-process.md │ └── design-principles.md ├── development │ └── README.md └── scrum │ ├── README.md │ └── backlog.md ├── package.json ├── postcss.config.js ├── public ├── README.md ├── favicons │ ├── apple-touch-icon.png │ └── favicon.ico └── images │ └── hydrogenlogo.svg ├── tailwind.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.md text eol=lf 2 | -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/auto_update_npm_updates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/.github/workflows/auto_update_npm_updates.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/spelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/.github/workflows/spelling.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/.prettierrc -------------------------------------------------------------------------------- /.typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/.typos.toml -------------------------------------------------------------------------------- /.vitepress/.gitignore: -------------------------------------------------------------------------------- 1 | /cache 2 | /dist 3 | -------------------------------------------------------------------------------- /.vitepress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/.vitepress/README.md -------------------------------------------------------------------------------- /.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/.vitepress/config.mts -------------------------------------------------------------------------------- /.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /.vitepress/theme/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/.vitepress/theme/style.css -------------------------------------------------------------------------------- /.vitepress/theme/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/.vitepress/theme/tailwind.css -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/README.md -------------------------------------------------------------------------------- /development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/development/README.md -------------------------------------------------------------------------------- /development/library/back-end/conventions--laravel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/development/library/back-end/conventions--laravel.md -------------------------------------------------------------------------------- /development/library/back-end/conventions--php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/development/library/back-end/conventions--php.md -------------------------------------------------------------------------------- /development/library/back-end/conventions--sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/development/library/back-end/conventions--sql.md -------------------------------------------------------------------------------- /development/library/front-end/conventions--css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/development/library/front-end/conventions--css.md -------------------------------------------------------------------------------- /development/library/front-end/conventions--js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/development/library/front-end/conventions--js.md -------------------------------------------------------------------------------- /development/library/front-end/conventions--jsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/development/library/front-end/conventions--jsdoc.md -------------------------------------------------------------------------------- /development/library/front-end/conventions--vue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/development/library/front-end/conventions--vue.md -------------------------------------------------------------------------------- /guides/OKR/00-benefits-of-okrs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/guides/OKR/00-benefits-of-okrs.md -------------------------------------------------------------------------------- /guides/OKR/00-history-of-okrs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/guides/OKR/00-history-of-okrs.md -------------------------------------------------------------------------------- /guides/OKR/00-why-okrs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/guides/OKR/00-why-okrs.md -------------------------------------------------------------------------------- /guides/OKR/01-okr-cadence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/guides/OKR/01-okr-cadence.md -------------------------------------------------------------------------------- /guides/OKR/02-cascading-okrs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/guides/OKR/02-cascading-okrs.md -------------------------------------------------------------------------------- /guides/OKR/03-create-your-okrs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/guides/OKR/03-create-your-okrs.md -------------------------------------------------------------------------------- /guides/OKR/04-stay-aligned-as-a-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/guides/OKR/04-stay-aligned-as-a-team.md -------------------------------------------------------------------------------- /guides/OKR/05-assess-your-okrs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/guides/OKR/05-assess-your-okrs.md -------------------------------------------------------------------------------- /guides/OKR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/guides/OKR/README.md -------------------------------------------------------------------------------- /guides/collaboration-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/guides/collaboration-tools.md -------------------------------------------------------------------------------- /guides/onboarding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/guides/onboarding/README.md -------------------------------------------------------------------------------- /guides/onboarding/onboarding--buddyGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/guides/onboarding/onboarding--buddyGuide.md -------------------------------------------------------------------------------- /guides/onboarding/onboarding--domain-knowledge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/guides/onboarding/onboarding--domain-knowledge.md -------------------------------------------------------------------------------- /guides/people-operations/team-trips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/guides/people-operations/team-trips.md -------------------------------------------------------------------------------- /guides/people-operations/video-calls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/guides/people-operations/video-calls.md -------------------------------------------------------------------------------- /guides/roles/senior-developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/guides/roles/senior-developer.md -------------------------------------------------------------------------------- /guides/roles/support-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/guides/roles/support-engineer.md -------------------------------------------------------------------------------- /images/10-okr-benefits-part-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/10-okr-benefits-part-1.svg -------------------------------------------------------------------------------- /images/11-okr-benefits-part-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/11-okr-benefits-part-2.svg -------------------------------------------------------------------------------- /images/12-okr-benefits-part-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/12-okr-benefits-part-3.svg -------------------------------------------------------------------------------- /images/14-okr-quarter-part-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/14-okr-quarter-part-1.svg -------------------------------------------------------------------------------- /images/15-okr-quarter-part-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/15-okr-quarter-part-2.svg -------------------------------------------------------------------------------- /images/16-okr-year-and-quarter-part-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/16-okr-year-and-quarter-part-1.svg -------------------------------------------------------------------------------- /images/17-okr-year-and-quarter-part-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/17-okr-year-and-quarter-part-2.svg -------------------------------------------------------------------------------- /images/18-okr-year.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/18-okr-year.svg -------------------------------------------------------------------------------- /images/19-okr-pillars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/19-okr-pillars.svg -------------------------------------------------------------------------------- /images/20-how-we-use-okrs-in-teams.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/20-how-we-use-okrs-in-teams.svg -------------------------------------------------------------------------------- /images/21-transparency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/21-transparency.svg -------------------------------------------------------------------------------- /images/22-okr-checklist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/22-okr-checklist.svg -------------------------------------------------------------------------------- /images/24-okr-cascade-part-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/24-okr-cascade-part-1.svg -------------------------------------------------------------------------------- /images/25-okr-cascade-part-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/25-okr-cascade-part-2.svg -------------------------------------------------------------------------------- /images/26-okr-quarter-reference.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/26-okr-quarter-reference.svg -------------------------------------------------------------------------------- /images/27-okr-spreadsheet-part-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/27-okr-spreadsheet-part-1.svg -------------------------------------------------------------------------------- /images/28-okr-spreadsheet-part-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/28-okr-spreadsheet-part-2.svg -------------------------------------------------------------------------------- /images/29-okr-spreadsheet-part-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/29-okr-spreadsheet-part-3.svg -------------------------------------------------------------------------------- /images/30-okr-spreadsheet-part-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/30-okr-spreadsheet-part-4.svg -------------------------------------------------------------------------------- /images/31-okr-spreadsheet-part-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/31-okr-spreadsheet-part-5.svg -------------------------------------------------------------------------------- /images/33-smart-okrs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/33-smart-okrs.svg -------------------------------------------------------------------------------- /images/34-quarterly-meeting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/34-quarterly-meeting.svg -------------------------------------------------------------------------------- /images/35-sprint-planning-prep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/35-sprint-planning-prep.svg -------------------------------------------------------------------------------- /images/36-sprint-planning-meeting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/36-sprint-planning-meeting.svg -------------------------------------------------------------------------------- /images/37-daily-standup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/37-daily-standup.svg -------------------------------------------------------------------------------- /images/38-one-to-one-checkin-prep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/38-one-to-one-checkin-prep.svg -------------------------------------------------------------------------------- /images/39-team-checkin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/39-team-checkin.svg -------------------------------------------------------------------------------- /images/42-end-of-quarter-meeting-metrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/42-end-of-quarter-meeting-metrics.svg -------------------------------------------------------------------------------- /images/43-end-of-quarter-meeting-team.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/43-end-of-quarter-meeting-team.svg -------------------------------------------------------------------------------- /images/45-okr-history-people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/45-okr-history-people.svg -------------------------------------------------------------------------------- /images/46-okr-history-timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/46-okr-history-timeline.svg -------------------------------------------------------------------------------- /images/5-alignment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/5-alignment.svg -------------------------------------------------------------------------------- /images/6-okr-part-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/6-okr-part-1.svg -------------------------------------------------------------------------------- /images/7-okr-part-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/7-okr-part-2.svg -------------------------------------------------------------------------------- /images/8-okr-examples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/8-okr-examples.svg -------------------------------------------------------------------------------- /images/agile-organization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/agile-organization.svg -------------------------------------------------------------------------------- /images/agile-software.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/agile-software.svg -------------------------------------------------------------------------------- /images/agile-sprints.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/agile-sprints.svg -------------------------------------------------------------------------------- /images/agile-teams.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/agile-teams.svg -------------------------------------------------------------------------------- /images/continuous-delivery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/continuous-delivery.svg -------------------------------------------------------------------------------- /images/delivery-criteria.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/delivery-criteria.svg -------------------------------------------------------------------------------- /images/discovery-delivery-sprints.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/discovery-delivery-sprints.svg -------------------------------------------------------------------------------- /images/helpful-agile-terms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/helpful-agile-terms.svg -------------------------------------------------------------------------------- /images/hero-all-v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/hero-all-v2.svg -------------------------------------------------------------------------------- /images/hero-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/hero-all.svg -------------------------------------------------------------------------------- /images/hero-content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/hero-content.svg -------------------------------------------------------------------------------- /images/hero-coordination.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/hero-coordination.svg -------------------------------------------------------------------------------- /images/hero-design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/hero-design.svg -------------------------------------------------------------------------------- /images/hero-dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/hero-dev.svg -------------------------------------------------------------------------------- /images/hero-development.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/hero-development.svg -------------------------------------------------------------------------------- /images/hero-process.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/hero-process.svg -------------------------------------------------------------------------------- /images/hero-product.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/hero-product.svg -------------------------------------------------------------------------------- /images/hero-purpose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/hero-purpose.svg -------------------------------------------------------------------------------- /images/issue-types.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/issue-types.svg -------------------------------------------------------------------------------- /images/new-product-process.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/new-product-process.svg -------------------------------------------------------------------------------- /images/scrum-board.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/images/scrum-board.svg -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/index.md -------------------------------------------------------------------------------- /library/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/library/backend/README.md -------------------------------------------------------------------------------- /library/backend/SOLID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/library/backend/SOLID.md -------------------------------------------------------------------------------- /library/backend/clean-code-php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/library/backend/clean-code-php.md -------------------------------------------------------------------------------- /library/backend/conventions--laravel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/library/backend/conventions--laravel.md -------------------------------------------------------------------------------- /library/backend/conventions--php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/library/backend/conventions--php.md -------------------------------------------------------------------------------- /library/backend/conventions--sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/library/backend/conventions--sql.md -------------------------------------------------------------------------------- /library/backend/literature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/library/backend/literature.md -------------------------------------------------------------------------------- /library/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/library/frontend/README.md -------------------------------------------------------------------------------- /library/frontend/clean-code-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/library/frontend/clean-code-js.md -------------------------------------------------------------------------------- /library/frontend/conventions--css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/library/frontend/conventions--css.md -------------------------------------------------------------------------------- /library/frontend/conventions--js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/library/frontend/conventions--js.md -------------------------------------------------------------------------------- /library/frontend/conventions--jsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/library/frontend/conventions--jsdoc.md -------------------------------------------------------------------------------- /library/frontend/conventions--vuejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/library/frontend/conventions--vuejs.md -------------------------------------------------------------------------------- /library/frontend/literature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/library/frontend/literature.md -------------------------------------------------------------------------------- /library/frontend/use-the-platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/library/frontend/use-the-platform.md -------------------------------------------------------------------------------- /outdated/achieve-purpose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/outdated/achieve-purpose/README.md -------------------------------------------------------------------------------- /outdated/achieve-purpose/mission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/outdated/achieve-purpose/mission.md -------------------------------------------------------------------------------- /outdated/achieve-purpose/vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/outdated/achieve-purpose/vision.md -------------------------------------------------------------------------------- /outdated/design-products/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/outdated/design-products/README.md -------------------------------------------------------------------------------- /outdated/design-products/delivery-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/outdated/design-products/delivery-process.md -------------------------------------------------------------------------------- /outdated/design-products/design-principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/outdated/design-products/design-principles.md -------------------------------------------------------------------------------- /outdated/development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/outdated/development/README.md -------------------------------------------------------------------------------- /outdated/scrum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/outdated/scrum/README.md -------------------------------------------------------------------------------- /outdated/scrum/backlog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/outdated/scrum/backlog.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/README.md: -------------------------------------------------------------------------------- 1 | See https://vitepress.dev/guide/asset-handling#the-public-directory 2 | -------------------------------------------------------------------------------- /public/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/public/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/public/favicons/favicon.ico -------------------------------------------------------------------------------- /public/images/hydrogenlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/public/images/hydrogenlogo.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractionDesignFoundation/handbook/HEAD/yarn.lock --------------------------------------------------------------------------------