├── .adr.json ├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── ci.yml │ ├── deploy.yml │ └── pr.yml ├── .gitignore ├── .nvmrc ├── .stylelintrc.json ├── CHANGELOG.md ├── Jenkinsfile ├── LICENSE ├── README.md ├── angular.json ├── browserslist ├── dependabot.yml ├── docs ├── README.md ├── adr │ ├── 0001-markdown-docs-like-code-system.md │ ├── 0002-markdown-support-for-loading-web-components.md │ ├── 0003-ledge-render.md │ └── README.md ├── graph │ └── tree.html └── images │ ├── devops-digram-generator.png │ ├── ledge-ss.png │ └── wechat-group.jpg ├── karma.conf.js ├── ngsw-config.json ├── package.json ├── scully.ledge.config.js ├── src ├── README.md ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── features │ │ └── periodic-table │ │ │ ├── atom-category │ │ │ ├── atom-category.component.scss │ │ │ ├── atom-category.component.spec.ts │ │ │ └── atom-category.component.ts │ │ │ ├── atom-details │ │ │ ├── atom-details.component.html │ │ │ ├── atom-details.component.scss │ │ │ ├── atom-details.component.spec.ts │ │ │ └── atom-details.component.ts │ │ │ ├── atom-dialog │ │ │ ├── atom-dialog.component.html │ │ │ ├── atom-dialog.component.scss │ │ │ ├── atom-dialog.component.spec.ts │ │ │ └── atom-dialog.component.ts │ │ │ ├── atom │ │ │ ├── atom.component.html │ │ │ ├── atom.component.scss │ │ │ ├── atom.component.spec.ts │ │ │ └── atom.component.ts │ │ │ ├── periodic-table.module.ts │ │ │ ├── periodic-table │ │ │ ├── periodic-table.component.html │ │ │ ├── periodic-table.component.scss │ │ │ ├── periodic-table.component.spec.ts │ │ │ └── periodic-table.component.ts │ │ │ └── support │ │ │ ├── index.ts │ │ │ └── interfaces.ts │ ├── globals.d.ts │ ├── presentation │ │ ├── case-study │ │ │ ├── case-study-routing.module.ts │ │ │ ├── case-study.component.html │ │ │ ├── case-study.component.scss │ │ │ ├── case-study.component.spec.ts │ │ │ ├── case-study.component.ts │ │ │ ├── case-study.module.ts │ │ │ └── cases.ts │ │ ├── checklists │ │ │ ├── checklists-routing.module.ts │ │ │ ├── checklists.component.html │ │ │ ├── checklists.component.scss │ │ │ ├── checklists.component.spec.ts │ │ │ ├── checklists.component.ts │ │ │ └── checklists.module.ts │ │ ├── design │ │ │ ├── design.component.html │ │ │ ├── design.component.scss │ │ │ ├── design.component.spec.ts │ │ │ ├── design.component.ts │ │ │ ├── design.module.ts │ │ │ └── path │ │ │ │ ├── path.component.html │ │ │ │ ├── path.component.scss │ │ │ │ ├── path.component.spec.ts │ │ │ │ └── path.component.ts │ │ ├── guide │ │ │ ├── guide.component.html │ │ │ ├── guide.component.scss │ │ │ ├── guide.component.spec.ts │ │ │ ├── guide.component.ts │ │ │ └── guide.module.ts │ │ ├── home │ │ │ ├── contributiors.ts │ │ │ ├── home.component.html │ │ │ ├── home.component.scss │ │ │ ├── home.component.spec.ts │ │ │ ├── home.component.ts │ │ │ └── home.module.ts │ │ ├── job │ │ │ ├── create-job-dialog │ │ │ │ ├── create-job-dialog.component.html │ │ │ │ ├── create-job-dialog.component.scss │ │ │ │ ├── create-job-dialog.component.spec.ts │ │ │ │ ├── create-job-dialog.component.ts │ │ │ │ └── job-data.model.ts │ │ │ ├── job.component.html │ │ │ ├── job.component.scss │ │ │ ├── job.component.spec.ts │ │ │ ├── job.component.ts │ │ │ └── job.module.ts │ │ ├── ledge-editor │ │ │ ├── ledge-editor.component.html │ │ │ ├── ledge-editor.component.scss │ │ │ ├── ledge-editor.component.spec.ts │ │ │ ├── ledge-editor.component.ts │ │ │ └── ledge-editor.module.ts │ │ ├── manual │ │ │ ├── manual.component.html │ │ │ ├── manual.component.scss │ │ │ ├── manual.component.spec.ts │ │ │ └── manual.component.ts │ │ ├── maturity │ │ │ ├── maturity.component.html │ │ │ ├── maturity.component.scss │ │ │ ├── maturity.component.spec.ts │ │ │ ├── maturity.component.ts │ │ │ └── maturity.module.ts │ │ ├── partners │ │ │ ├── partners.component.html │ │ │ ├── partners.component.scss │ │ │ ├── partners.component.spec.ts │ │ │ ├── partners.component.ts │ │ │ └── partners.module.ts │ │ ├── pattern │ │ │ ├── pattern.component.html │ │ │ ├── pattern.component.scss │ │ │ ├── pattern.component.spec.ts │ │ │ └── pattern.component.ts │ │ ├── practise │ │ │ ├── practise.component.html │ │ │ ├── practise.component.scss │ │ │ ├── practise.component.spec.ts │ │ │ ├── practise.component.ts │ │ │ ├── practise.module.ts │ │ │ └── practise.ts │ │ ├── reporter │ │ │ ├── reporter.component.html │ │ │ ├── reporter.component.scss │ │ │ ├── reporter.component.spec.ts │ │ │ ├── reporter.component.ts │ │ │ └── reporter.module.ts │ │ ├── resources │ │ │ ├── resources.component.html │ │ │ ├── resources.component.scss │ │ │ ├── resources.component.spec.ts │ │ │ └── resources.component.ts │ │ ├── skill-tree │ │ │ ├── skill-tree.component.html │ │ │ ├── skill-tree.component.scss │ │ │ ├── skill-tree.component.spec.ts │ │ │ ├── skill-tree.component.ts │ │ │ └── skill-tree.module.ts │ │ ├── solution │ │ │ ├── solution-routing.module.ts │ │ │ ├── solution.component.html │ │ │ ├── solution.component.scss │ │ │ ├── solution.component.spec.ts │ │ │ ├── solution.component.ts │ │ │ ├── solution.module.ts │ │ │ └── solutions.ts │ │ ├── think-tank │ │ │ ├── think-tank.component.html │ │ │ ├── think-tank.component.scss │ │ │ ├── think-tank.component.spec.ts │ │ │ ├── think-tank.component.ts │ │ │ ├── think-tank.module.ts │ │ │ └── thinktanks.ts │ │ └── toolset │ │ │ ├── toolset.component.html │ │ │ ├── toolset.component.scss │ │ │ ├── toolset.component.spec.ts │ │ │ └── toolset.component.ts │ ├── shared │ │ ├── custom-material.module.ts │ │ ├── directives │ │ │ └── .gitkeep │ │ ├── interceptors │ │ │ └── .gitkeep │ │ ├── pipes │ │ │ └── .gitkeep │ │ └── shared.module.ts │ └── webpack-translate-loader.ts ├── apple-touch-icon.png ├── assets │ ├── docs │ │ ├── README.md │ │ ├── casestudies │ │ │ ├── alibaba.md │ │ │ ├── atlassian.md │ │ │ ├── baidu.md │ │ │ ├── bilibili.md │ │ │ ├── bocloud.md │ │ │ ├── china-bank.md │ │ │ ├── cloudbase.md │ │ │ ├── cmb.md │ │ │ ├── daocloud.md │ │ │ ├── dasouche.md │ │ │ ├── etsy.md │ │ │ ├── hp.md │ │ │ ├── huawei.md │ │ │ ├── ledge.md │ │ │ ├── meituan.md │ │ │ ├── netflix.md │ │ │ ├── nonghang.md │ │ │ ├── tencent.md │ │ │ ├── tw-banks.md │ │ │ ├── weibo.md │ │ │ ├── xiaomi.md │ │ │ ├── xuecheng.md │ │ │ ├── youku.md │ │ │ └── zhengcaiyun.md │ │ ├── checklists │ │ │ ├── agile-practise.md │ │ │ ├── api-security.md │ │ │ ├── aws-devops.md │ │ │ ├── azure-devops.md │ │ │ ├── code-review.md │ │ │ ├── devsecops.md │ │ │ ├── frontend.md │ │ │ ├── microservices.md │ │ │ ├── new-project.md │ │ │ ├── nodejs-practices.md │ │ │ ├── self-org.md │ │ │ ├── semat-requirements.md │ │ │ └── xp-practise.md │ │ ├── design.md │ │ ├── guide.md │ │ ├── guide_en.md │ │ ├── help.md │ │ ├── home.md │ │ ├── home_en.md │ │ ├── images │ │ │ ├── bdd_process.jpg │ │ │ ├── choose-one-thing.png │ │ │ ├── devops-framework.jpg │ │ │ ├── heat-map-services.jpg │ │ │ ├── ios-bug-taobao.jpg │ │ │ ├── quality-attribute-web-diagram.png │ │ │ ├── tech-debt-landscape.png │ │ │ ├── tool-report.svg │ │ │ └── typical-Ishikawa-diagram-Invensis.jpg │ │ ├── manual.md │ │ ├── maturities │ │ │ ├── amm.md │ │ │ ├── arch.md │ │ │ ├── devops.md │ │ │ ├── large-devops.md │ │ │ ├── msmm.md │ │ │ ├── owasp.md │ │ │ ├── smmm.md │ │ │ └── team-topologies.md │ │ ├── pattern.md │ │ ├── practises │ │ │ ├── agile-practise.md │ │ │ ├── ci-practise.md │ │ │ ├── devops-platform.md │ │ │ ├── devops-practise.md │ │ │ ├── devsecops-practise.md │ │ │ ├── frontend-devops-practise.md │ │ │ ├── tech-practise.md │ │ │ └── test-practise.md │ │ ├── reports │ │ │ ├── 2019.md │ │ │ └── 2020.md │ │ ├── resources.md │ │ ├── resources_en.md │ │ ├── skilltrees │ │ │ ├── arch-skilltree.md │ │ │ ├── backend-skilltree.md │ │ │ ├── devops-skilltree.md │ │ │ └── frontend-skilltree.md │ │ ├── solutions │ │ │ ├── cloudbase.md │ │ │ ├── coding.md │ │ │ ├── deliflow.md │ │ │ ├── firim.md │ │ │ ├── jdcloud.md │ │ │ ├── worktile.md │ │ │ └── zentao.md │ │ ├── think-tank │ │ │ ├── 3d.md │ │ │ ├── ba.md │ │ │ ├── backend.md │ │ │ ├── frontend.md │ │ │ ├── microservices.md │ │ │ ├── mobile-android.md │ │ │ ├── operation.md │ │ │ ├── ops.md │ │ │ ├── qa.md │ │ │ └── refactoring.md │ │ └── toolset.md │ ├── elements.json │ ├── i18n │ │ ├── en.json │ │ └── zh-cn.json │ ├── icons │ │ ├── icon-128x128.png │ │ ├── icon-144x144.png │ │ ├── icon-152x152.png │ │ ├── icon-192x192.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ ├── icon-72x72.png │ │ └── icon-96x96.png │ ├── images │ │ ├── agile-fluency.png │ │ ├── arch-level.svg │ │ ├── arrow.svg │ │ ├── devops-circle.svg │ │ ├── devops-fluency.svg │ │ ├── devops-three-ways.jpg │ │ ├── esp.svg │ │ ├── github-circle-white-transparent.svg │ │ ├── logo.svg │ │ ├── logo_no_title.svg │ │ ├── logo_pure.svg │ │ ├── mdb-fluency.png │ │ ├── mdb.svg │ │ └── purelogo.svg │ ├── maturity-outline.json │ ├── periodic-table.json │ ├── resources │ │ └── images │ │ │ ├── arrow-right-thin.svg │ │ │ ├── arrow.svg │ │ │ ├── avatar-new.svg │ │ │ └── avatar.svg │ └── scully-routes.json ├── environments │ ├── environment.ci.ts │ ├── environment.prod.ts │ └── environment.ts ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── main.ts ├── manifest.webmanifest ├── polyfills.ts ├── styles.scss ├── styles │ ├── _behavior.scss │ ├── _color.scss │ ├── _dragula.scss │ ├── _markdown-render.scss │ ├── _markdown.scss │ ├── _material-ui.scss │ ├── _mobile.scss │ ├── _periodic-variables.scss │ └── intro.scss └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json ├── tslint.json └── yarn.lock /.adr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/.adr.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12.16.1 2 | -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/browserslist -------------------------------------------------------------------------------- /dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/dependabot.yml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/adr/0001-markdown-docs-like-code-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/docs/adr/0001-markdown-docs-like-code-system.md -------------------------------------------------------------------------------- /docs/adr/0002-markdown-support-for-loading-web-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/docs/adr/0002-markdown-support-for-loading-web-components.md -------------------------------------------------------------------------------- /docs/adr/0003-ledge-render.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/docs/adr/0003-ledge-render.md -------------------------------------------------------------------------------- /docs/adr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/docs/adr/README.md -------------------------------------------------------------------------------- /docs/graph/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/docs/graph/tree.html -------------------------------------------------------------------------------- /docs/images/devops-digram-generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/docs/images/devops-digram-generator.png -------------------------------------------------------------------------------- /docs/images/ledge-ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/docs/images/ledge-ss.png -------------------------------------------------------------------------------- /docs/images/wechat-group.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/docs/images/wechat-group.jpg -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/karma.conf.js -------------------------------------------------------------------------------- /ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/ngsw-config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/package.json -------------------------------------------------------------------------------- /scully.ledge.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/scully.ledge.config.js -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/README.md -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/features/periodic-table/atom-category/atom-category.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/atom-category/atom-category.component.scss -------------------------------------------------------------------------------- /src/app/features/periodic-table/atom-category/atom-category.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/atom-category/atom-category.component.spec.ts -------------------------------------------------------------------------------- /src/app/features/periodic-table/atom-category/atom-category.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/atom-category/atom-category.component.ts -------------------------------------------------------------------------------- /src/app/features/periodic-table/atom-details/atom-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/atom-details/atom-details.component.html -------------------------------------------------------------------------------- /src/app/features/periodic-table/atom-details/atom-details.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/atom-details/atom-details.component.scss -------------------------------------------------------------------------------- /src/app/features/periodic-table/atom-details/atom-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/atom-details/atom-details.component.spec.ts -------------------------------------------------------------------------------- /src/app/features/periodic-table/atom-details/atom-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/atom-details/atom-details.component.ts -------------------------------------------------------------------------------- /src/app/features/periodic-table/atom-dialog/atom-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/atom-dialog/atom-dialog.component.html -------------------------------------------------------------------------------- /src/app/features/periodic-table/atom-dialog/atom-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/atom-dialog/atom-dialog.component.scss -------------------------------------------------------------------------------- /src/app/features/periodic-table/atom-dialog/atom-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/atom-dialog/atom-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/features/periodic-table/atom-dialog/atom-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/atom-dialog/atom-dialog.component.ts -------------------------------------------------------------------------------- /src/app/features/periodic-table/atom/atom.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/atom/atom.component.html -------------------------------------------------------------------------------- /src/app/features/periodic-table/atom/atom.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/atom/atom.component.scss -------------------------------------------------------------------------------- /src/app/features/periodic-table/atom/atom.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/atom/atom.component.spec.ts -------------------------------------------------------------------------------- /src/app/features/periodic-table/atom/atom.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/atom/atom.component.ts -------------------------------------------------------------------------------- /src/app/features/periodic-table/periodic-table.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/periodic-table.module.ts -------------------------------------------------------------------------------- /src/app/features/periodic-table/periodic-table/periodic-table.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/periodic-table/periodic-table.component.html -------------------------------------------------------------------------------- /src/app/features/periodic-table/periodic-table/periodic-table.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/periodic-table/periodic-table.component.scss -------------------------------------------------------------------------------- /src/app/features/periodic-table/periodic-table/periodic-table.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/periodic-table/periodic-table.component.spec.ts -------------------------------------------------------------------------------- /src/app/features/periodic-table/periodic-table/periodic-table.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/periodic-table/periodic-table.component.ts -------------------------------------------------------------------------------- /src/app/features/periodic-table/support/index.ts: -------------------------------------------------------------------------------- 1 | export { Atom, HighlightState } from './interfaces'; 2 | -------------------------------------------------------------------------------- /src/app/features/periodic-table/support/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/features/periodic-table/support/interfaces.ts -------------------------------------------------------------------------------- /src/app/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/globals.d.ts -------------------------------------------------------------------------------- /src/app/presentation/case-study/case-study-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/case-study/case-study-routing.module.ts -------------------------------------------------------------------------------- /src/app/presentation/case-study/case-study.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/case-study/case-study.component.html -------------------------------------------------------------------------------- /src/app/presentation/case-study/case-study.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/presentation/case-study/case-study.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/case-study/case-study.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/case-study/case-study.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/case-study/case-study.component.ts -------------------------------------------------------------------------------- /src/app/presentation/case-study/case-study.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/case-study/case-study.module.ts -------------------------------------------------------------------------------- /src/app/presentation/case-study/cases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/case-study/cases.ts -------------------------------------------------------------------------------- /src/app/presentation/checklists/checklists-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/checklists/checklists-routing.module.ts -------------------------------------------------------------------------------- /src/app/presentation/checklists/checklists.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/checklists/checklists.component.html -------------------------------------------------------------------------------- /src/app/presentation/checklists/checklists.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/checklists/checklists.component.scss -------------------------------------------------------------------------------- /src/app/presentation/checklists/checklists.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/checklists/checklists.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/checklists/checklists.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/checklists/checklists.component.ts -------------------------------------------------------------------------------- /src/app/presentation/checklists/checklists.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/checklists/checklists.module.ts -------------------------------------------------------------------------------- /src/app/presentation/design/design.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/design/design.component.html -------------------------------------------------------------------------------- /src/app/presentation/design/design.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/design/design.component.scss -------------------------------------------------------------------------------- /src/app/presentation/design/design.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/design/design.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/design/design.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/design/design.component.ts -------------------------------------------------------------------------------- /src/app/presentation/design/design.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/design/design.module.ts -------------------------------------------------------------------------------- /src/app/presentation/design/path/path.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/design/path/path.component.html -------------------------------------------------------------------------------- /src/app/presentation/design/path/path.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/design/path/path.component.scss -------------------------------------------------------------------------------- /src/app/presentation/design/path/path.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/design/path/path.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/design/path/path.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/design/path/path.component.ts -------------------------------------------------------------------------------- /src/app/presentation/guide/guide.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/guide/guide.component.html -------------------------------------------------------------------------------- /src/app/presentation/guide/guide.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/presentation/guide/guide.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/guide/guide.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/guide/guide.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/guide/guide.component.ts -------------------------------------------------------------------------------- /src/app/presentation/guide/guide.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/guide/guide.module.ts -------------------------------------------------------------------------------- /src/app/presentation/home/contributiors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/home/contributiors.ts -------------------------------------------------------------------------------- /src/app/presentation/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/home/home.component.html -------------------------------------------------------------------------------- /src/app/presentation/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/home/home.component.scss -------------------------------------------------------------------------------- /src/app/presentation/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/home/home.component.ts -------------------------------------------------------------------------------- /src/app/presentation/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/home/home.module.ts -------------------------------------------------------------------------------- /src/app/presentation/job/create-job-dialog/create-job-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/job/create-job-dialog/create-job-dialog.component.html -------------------------------------------------------------------------------- /src/app/presentation/job/create-job-dialog/create-job-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/job/create-job-dialog/create-job-dialog.component.scss -------------------------------------------------------------------------------- /src/app/presentation/job/create-job-dialog/create-job-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/job/create-job-dialog/create-job-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/job/create-job-dialog/create-job-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/job/create-job-dialog/create-job-dialog.component.ts -------------------------------------------------------------------------------- /src/app/presentation/job/create-job-dialog/job-data.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/job/create-job-dialog/job-data.model.ts -------------------------------------------------------------------------------- /src/app/presentation/job/job.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/job/job.component.html -------------------------------------------------------------------------------- /src/app/presentation/job/job.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/job/job.component.scss -------------------------------------------------------------------------------- /src/app/presentation/job/job.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/job/job.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/job/job.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/job/job.component.ts -------------------------------------------------------------------------------- /src/app/presentation/job/job.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/job/job.module.ts -------------------------------------------------------------------------------- /src/app/presentation/ledge-editor/ledge-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/ledge-editor/ledge-editor.component.html -------------------------------------------------------------------------------- /src/app/presentation/ledge-editor/ledge-editor.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/ledge-editor/ledge-editor.component.scss -------------------------------------------------------------------------------- /src/app/presentation/ledge-editor/ledge-editor.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/ledge-editor/ledge-editor.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/ledge-editor/ledge-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/ledge-editor/ledge-editor.component.ts -------------------------------------------------------------------------------- /src/app/presentation/ledge-editor/ledge-editor.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/ledge-editor/ledge-editor.module.ts -------------------------------------------------------------------------------- /src/app/presentation/manual/manual.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/manual/manual.component.html -------------------------------------------------------------------------------- /src/app/presentation/manual/manual.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/presentation/manual/manual.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/manual/manual.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/manual/manual.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/manual/manual.component.ts -------------------------------------------------------------------------------- /src/app/presentation/maturity/maturity.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/maturity/maturity.component.html -------------------------------------------------------------------------------- /src/app/presentation/maturity/maturity.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/maturity/maturity.component.scss -------------------------------------------------------------------------------- /src/app/presentation/maturity/maturity.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/maturity/maturity.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/maturity/maturity.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/maturity/maturity.component.ts -------------------------------------------------------------------------------- /src/app/presentation/maturity/maturity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/maturity/maturity.module.ts -------------------------------------------------------------------------------- /src/app/presentation/partners/partners.component.html: -------------------------------------------------------------------------------- 1 |

partners works!

2 | -------------------------------------------------------------------------------- /src/app/presentation/partners/partners.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/presentation/partners/partners.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/partners/partners.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/partners/partners.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/partners/partners.component.ts -------------------------------------------------------------------------------- /src/app/presentation/partners/partners.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/partners/partners.module.ts -------------------------------------------------------------------------------- /src/app/presentation/pattern/pattern.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/pattern/pattern.component.html -------------------------------------------------------------------------------- /src/app/presentation/pattern/pattern.component.scss: -------------------------------------------------------------------------------- 1 | img { 2 | width: 400px; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/presentation/pattern/pattern.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/pattern/pattern.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/pattern/pattern.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/pattern/pattern.component.ts -------------------------------------------------------------------------------- /src/app/presentation/practise/practise.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/practise/practise.component.html -------------------------------------------------------------------------------- /src/app/presentation/practise/practise.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/presentation/practise/practise.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/practise/practise.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/practise/practise.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/practise/practise.component.ts -------------------------------------------------------------------------------- /src/app/presentation/practise/practise.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/practise/practise.module.ts -------------------------------------------------------------------------------- /src/app/presentation/practise/practise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/practise/practise.ts -------------------------------------------------------------------------------- /src/app/presentation/reporter/reporter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/reporter/reporter.component.html -------------------------------------------------------------------------------- /src/app/presentation/reporter/reporter.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/presentation/reporter/reporter.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/reporter/reporter.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/reporter/reporter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/reporter/reporter.component.ts -------------------------------------------------------------------------------- /src/app/presentation/reporter/reporter.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/reporter/reporter.module.ts -------------------------------------------------------------------------------- /src/app/presentation/resources/resources.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/resources/resources.component.html -------------------------------------------------------------------------------- /src/app/presentation/resources/resources.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/presentation/resources/resources.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/resources/resources.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/resources/resources.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/resources/resources.component.ts -------------------------------------------------------------------------------- /src/app/presentation/skill-tree/skill-tree.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/skill-tree/skill-tree.component.html -------------------------------------------------------------------------------- /src/app/presentation/skill-tree/skill-tree.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/presentation/skill-tree/skill-tree.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/skill-tree/skill-tree.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/skill-tree/skill-tree.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/skill-tree/skill-tree.component.ts -------------------------------------------------------------------------------- /src/app/presentation/skill-tree/skill-tree.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/skill-tree/skill-tree.module.ts -------------------------------------------------------------------------------- /src/app/presentation/solution/solution-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/solution/solution-routing.module.ts -------------------------------------------------------------------------------- /src/app/presentation/solution/solution.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/solution/solution.component.html -------------------------------------------------------------------------------- /src/app/presentation/solution/solution.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/presentation/solution/solution.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/solution/solution.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/solution/solution.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/solution/solution.component.ts -------------------------------------------------------------------------------- /src/app/presentation/solution/solution.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/solution/solution.module.ts -------------------------------------------------------------------------------- /src/app/presentation/solution/solutions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/solution/solutions.ts -------------------------------------------------------------------------------- /src/app/presentation/think-tank/think-tank.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/think-tank/think-tank.component.html -------------------------------------------------------------------------------- /src/app/presentation/think-tank/think-tank.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/presentation/think-tank/think-tank.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/think-tank/think-tank.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/think-tank/think-tank.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/think-tank/think-tank.component.ts -------------------------------------------------------------------------------- /src/app/presentation/think-tank/think-tank.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/think-tank/think-tank.module.ts -------------------------------------------------------------------------------- /src/app/presentation/think-tank/thinktanks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/think-tank/thinktanks.ts -------------------------------------------------------------------------------- /src/app/presentation/toolset/toolset.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/toolset/toolset.component.html -------------------------------------------------------------------------------- /src/app/presentation/toolset/toolset.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/presentation/toolset/toolset.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/toolset/toolset.component.spec.ts -------------------------------------------------------------------------------- /src/app/presentation/toolset/toolset.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/presentation/toolset/toolset.component.ts -------------------------------------------------------------------------------- /src/app/shared/custom-material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/shared/custom-material.module.ts -------------------------------------------------------------------------------- /src/app/shared/directives/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/interceptors/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/pipes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/app/webpack-translate-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/app/webpack-translate-loader.ts -------------------------------------------------------------------------------- /src/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/apple-touch-icon.png -------------------------------------------------------------------------------- /src/assets/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/README.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/alibaba.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/alibaba.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/atlassian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/atlassian.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/baidu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/baidu.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/bilibili.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/bilibili.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/bocloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/bocloud.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/china-bank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/china-bank.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/cloudbase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/cloudbase.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/cmb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/cmb.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/daocloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/daocloud.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/dasouche.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/dasouche.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/etsy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/etsy.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/hp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/hp.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/huawei.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/huawei.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/ledge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/ledge.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/meituan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/meituan.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/netflix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/netflix.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/nonghang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/nonghang.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/tencent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/tencent.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/tw-banks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/tw-banks.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/weibo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/weibo.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/xiaomi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/xiaomi.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/xuecheng.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/xuecheng.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/youku.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/youku.md -------------------------------------------------------------------------------- /src/assets/docs/casestudies/zhengcaiyun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/casestudies/zhengcaiyun.md -------------------------------------------------------------------------------- /src/assets/docs/checklists/agile-practise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/checklists/agile-practise.md -------------------------------------------------------------------------------- /src/assets/docs/checklists/api-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/checklists/api-security.md -------------------------------------------------------------------------------- /src/assets/docs/checklists/aws-devops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/checklists/aws-devops.md -------------------------------------------------------------------------------- /src/assets/docs/checklists/azure-devops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/checklists/azure-devops.md -------------------------------------------------------------------------------- /src/assets/docs/checklists/code-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/checklists/code-review.md -------------------------------------------------------------------------------- /src/assets/docs/checklists/devsecops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/checklists/devsecops.md -------------------------------------------------------------------------------- /src/assets/docs/checklists/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/checklists/frontend.md -------------------------------------------------------------------------------- /src/assets/docs/checklists/microservices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/checklists/microservices.md -------------------------------------------------------------------------------- /src/assets/docs/checklists/new-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/checklists/new-project.md -------------------------------------------------------------------------------- /src/assets/docs/checklists/nodejs-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/checklists/nodejs-practices.md -------------------------------------------------------------------------------- /src/assets/docs/checklists/self-org.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/checklists/self-org.md -------------------------------------------------------------------------------- /src/assets/docs/checklists/semat-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/checklists/semat-requirements.md -------------------------------------------------------------------------------- /src/assets/docs/checklists/xp-practise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/checklists/xp-practise.md -------------------------------------------------------------------------------- /src/assets/docs/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/design.md -------------------------------------------------------------------------------- /src/assets/docs/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/guide.md -------------------------------------------------------------------------------- /src/assets/docs/guide_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/guide_en.md -------------------------------------------------------------------------------- /src/assets/docs/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/help.md -------------------------------------------------------------------------------- /src/assets/docs/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/home.md -------------------------------------------------------------------------------- /src/assets/docs/home_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/home_en.md -------------------------------------------------------------------------------- /src/assets/docs/images/bdd_process.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/images/bdd_process.jpg -------------------------------------------------------------------------------- /src/assets/docs/images/choose-one-thing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/images/choose-one-thing.png -------------------------------------------------------------------------------- /src/assets/docs/images/devops-framework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/images/devops-framework.jpg -------------------------------------------------------------------------------- /src/assets/docs/images/heat-map-services.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/images/heat-map-services.jpg -------------------------------------------------------------------------------- /src/assets/docs/images/ios-bug-taobao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/images/ios-bug-taobao.jpg -------------------------------------------------------------------------------- /src/assets/docs/images/quality-attribute-web-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/images/quality-attribute-web-diagram.png -------------------------------------------------------------------------------- /src/assets/docs/images/tech-debt-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/images/tech-debt-landscape.png -------------------------------------------------------------------------------- /src/assets/docs/images/tool-report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/images/tool-report.svg -------------------------------------------------------------------------------- /src/assets/docs/images/typical-Ishikawa-diagram-Invensis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/images/typical-Ishikawa-diagram-Invensis.jpg -------------------------------------------------------------------------------- /src/assets/docs/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/manual.md -------------------------------------------------------------------------------- /src/assets/docs/maturities/amm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/maturities/amm.md -------------------------------------------------------------------------------- /src/assets/docs/maturities/arch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/maturities/arch.md -------------------------------------------------------------------------------- /src/assets/docs/maturities/devops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/maturities/devops.md -------------------------------------------------------------------------------- /src/assets/docs/maturities/large-devops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/maturities/large-devops.md -------------------------------------------------------------------------------- /src/assets/docs/maturities/msmm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/maturities/msmm.md -------------------------------------------------------------------------------- /src/assets/docs/maturities/owasp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/maturities/owasp.md -------------------------------------------------------------------------------- /src/assets/docs/maturities/smmm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/maturities/smmm.md -------------------------------------------------------------------------------- /src/assets/docs/maturities/team-topologies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/maturities/team-topologies.md -------------------------------------------------------------------------------- /src/assets/docs/pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/pattern.md -------------------------------------------------------------------------------- /src/assets/docs/practises/agile-practise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/practises/agile-practise.md -------------------------------------------------------------------------------- /src/assets/docs/practises/ci-practise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/practises/ci-practise.md -------------------------------------------------------------------------------- /src/assets/docs/practises/devops-platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/practises/devops-platform.md -------------------------------------------------------------------------------- /src/assets/docs/practises/devops-practise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/practises/devops-practise.md -------------------------------------------------------------------------------- /src/assets/docs/practises/devsecops-practise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/practises/devsecops-practise.md -------------------------------------------------------------------------------- /src/assets/docs/practises/frontend-devops-practise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/practises/frontend-devops-practise.md -------------------------------------------------------------------------------- /src/assets/docs/practises/tech-practise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/practises/tech-practise.md -------------------------------------------------------------------------------- /src/assets/docs/practises/test-practise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/practises/test-practise.md -------------------------------------------------------------------------------- /src/assets/docs/reports/2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/reports/2019.md -------------------------------------------------------------------------------- /src/assets/docs/reports/2020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/reports/2020.md -------------------------------------------------------------------------------- /src/assets/docs/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/resources.md -------------------------------------------------------------------------------- /src/assets/docs/resources_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/resources_en.md -------------------------------------------------------------------------------- /src/assets/docs/skilltrees/arch-skilltree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/skilltrees/arch-skilltree.md -------------------------------------------------------------------------------- /src/assets/docs/skilltrees/backend-skilltree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/skilltrees/backend-skilltree.md -------------------------------------------------------------------------------- /src/assets/docs/skilltrees/devops-skilltree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/skilltrees/devops-skilltree.md -------------------------------------------------------------------------------- /src/assets/docs/skilltrees/frontend-skilltree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/skilltrees/frontend-skilltree.md -------------------------------------------------------------------------------- /src/assets/docs/solutions/cloudbase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/solutions/cloudbase.md -------------------------------------------------------------------------------- /src/assets/docs/solutions/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/solutions/coding.md -------------------------------------------------------------------------------- /src/assets/docs/solutions/deliflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/solutions/deliflow.md -------------------------------------------------------------------------------- /src/assets/docs/solutions/firim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/solutions/firim.md -------------------------------------------------------------------------------- /src/assets/docs/solutions/jdcloud.md: -------------------------------------------------------------------------------- 1 | # 京东云翼 2 | -------------------------------------------------------------------------------- /src/assets/docs/solutions/worktile.md: -------------------------------------------------------------------------------- 1 | # Worktile 2 | -------------------------------------------------------------------------------- /src/assets/docs/solutions/zentao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/solutions/zentao.md -------------------------------------------------------------------------------- /src/assets/docs/think-tank/3d.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/docs/think-tank/ba.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/think-tank/ba.md -------------------------------------------------------------------------------- /src/assets/docs/think-tank/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/think-tank/backend.md -------------------------------------------------------------------------------- /src/assets/docs/think-tank/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/think-tank/frontend.md -------------------------------------------------------------------------------- /src/assets/docs/think-tank/microservices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/think-tank/microservices.md -------------------------------------------------------------------------------- /src/assets/docs/think-tank/mobile-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/think-tank/mobile-android.md -------------------------------------------------------------------------------- /src/assets/docs/think-tank/operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/think-tank/operation.md -------------------------------------------------------------------------------- /src/assets/docs/think-tank/ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/think-tank/ops.md -------------------------------------------------------------------------------- /src/assets/docs/think-tank/qa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/think-tank/qa.md -------------------------------------------------------------------------------- /src/assets/docs/think-tank/refactoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/think-tank/refactoring.md -------------------------------------------------------------------------------- /src/assets/docs/toolset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/docs/toolset.md -------------------------------------------------------------------------------- /src/assets/elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/elements.json -------------------------------------------------------------------------------- /src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/i18n/en.json -------------------------------------------------------------------------------- /src/assets/i18n/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/i18n/zh-cn.json -------------------------------------------------------------------------------- /src/assets/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /src/assets/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/icons/icon-144x144.png -------------------------------------------------------------------------------- /src/assets/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/icons/icon-152x152.png -------------------------------------------------------------------------------- /src/assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /src/assets/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/icons/icon-384x384.png -------------------------------------------------------------------------------- /src/assets/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/icons/icon-512x512.png -------------------------------------------------------------------------------- /src/assets/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/icons/icon-72x72.png -------------------------------------------------------------------------------- /src/assets/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/icons/icon-96x96.png -------------------------------------------------------------------------------- /src/assets/images/agile-fluency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/images/agile-fluency.png -------------------------------------------------------------------------------- /src/assets/images/arch-level.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/images/arch-level.svg -------------------------------------------------------------------------------- /src/assets/images/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/images/arrow.svg -------------------------------------------------------------------------------- /src/assets/images/devops-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/images/devops-circle.svg -------------------------------------------------------------------------------- /src/assets/images/devops-fluency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/images/devops-fluency.svg -------------------------------------------------------------------------------- /src/assets/images/devops-three-ways.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/images/devops-three-ways.jpg -------------------------------------------------------------------------------- /src/assets/images/esp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/images/esp.svg -------------------------------------------------------------------------------- /src/assets/images/github-circle-white-transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/images/github-circle-white-transparent.svg -------------------------------------------------------------------------------- /src/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/images/logo.svg -------------------------------------------------------------------------------- /src/assets/images/logo_no_title.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/images/logo_no_title.svg -------------------------------------------------------------------------------- /src/assets/images/logo_pure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/images/logo_pure.svg -------------------------------------------------------------------------------- /src/assets/images/mdb-fluency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/images/mdb-fluency.png -------------------------------------------------------------------------------- /src/assets/images/mdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/images/mdb.svg -------------------------------------------------------------------------------- /src/assets/images/purelogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/images/purelogo.svg -------------------------------------------------------------------------------- /src/assets/maturity-outline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/maturity-outline.json -------------------------------------------------------------------------------- /src/assets/periodic-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/periodic-table.json -------------------------------------------------------------------------------- /src/assets/resources/images/arrow-right-thin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/resources/images/arrow-right-thin.svg -------------------------------------------------------------------------------- /src/assets/resources/images/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/resources/images/arrow.svg -------------------------------------------------------------------------------- /src/assets/resources/images/avatar-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/resources/images/avatar-new.svg -------------------------------------------------------------------------------- /src/assets/resources/images/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/resources/images/avatar.svg -------------------------------------------------------------------------------- /src/assets/scully-routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/assets/scully-routes.json -------------------------------------------------------------------------------- /src/environments/environment.ci.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/environments/environment.ci.ts -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/favicon-16x16.png -------------------------------------------------------------------------------- /src/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/favicon-32x32.png -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/manifest.webmanifest -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/styles/_behavior.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/styles/_behavior.scss -------------------------------------------------------------------------------- /src/styles/_color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/styles/_color.scss -------------------------------------------------------------------------------- /src/styles/_dragula.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/styles/_dragula.scss -------------------------------------------------------------------------------- /src/styles/_markdown-render.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/styles/_markdown-render.scss -------------------------------------------------------------------------------- /src/styles/_markdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/styles/_markdown.scss -------------------------------------------------------------------------------- /src/styles/_material-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/styles/_material-ui.scss -------------------------------------------------------------------------------- /src/styles/_mobile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/styles/_mobile.scss -------------------------------------------------------------------------------- /src/styles/_periodic-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/styles/_periodic-variables.scss -------------------------------------------------------------------------------- /src/styles/intro.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/styles/intro.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/ledge/HEAD/yarn.lock --------------------------------------------------------------------------------