gitextract_d48536wg/ ├── .editorconfig ├── .ember-cli ├── .eslintignore ├── .eslintrc.js ├── .github/ │ └── workflows/ │ ├── ci.yml │ ├── plan-release.yml │ └── publish.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── .release-plan.json ├── .watchmanconfig ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── RELEASE.md ├── addon/ │ └── .gitkeep ├── app/ │ └── .gitkeep ├── config/ │ ├── ember-try.js │ └── environment.js ├── ember-cli-build.js ├── index.js ├── lib/ │ ├── .eslintrc.js │ ├── config.js │ └── prerender.js ├── node-tests/ │ ├── basic-test.js │ └── url-tester.js ├── package.json ├── testem.js ├── tests/ │ ├── dummy/ │ │ ├── app/ │ │ │ ├── app.js │ │ │ ├── components/ │ │ │ │ └── .gitkeep │ │ │ ├── controllers/ │ │ │ │ └── .gitkeep │ │ │ ├── helpers/ │ │ │ │ └── .gitkeep │ │ │ ├── index.html │ │ │ ├── models/ │ │ │ │ └── .gitkeep │ │ │ ├── router.js │ │ │ ├── routes/ │ │ │ │ ├── .gitkeep │ │ │ │ ├── index.js │ │ │ │ ├── redirects.js │ │ │ │ └── use-static-asset.js │ │ │ ├── styles/ │ │ │ │ └── app.css │ │ │ └── templates/ │ │ │ ├── application.hbs │ │ │ ├── discovered.hbs │ │ │ ├── from-sample-data.hbs │ │ │ ├── head.hbs │ │ │ ├── index.hbs │ │ │ └── use-static-asset.hbs │ │ ├── config/ │ │ │ ├── ember-cli-update.json │ │ │ ├── environment.js │ │ │ ├── optional-features.json │ │ │ └── targets.js │ │ └── public/ │ │ ├── robots.txt │ │ ├── sample-data.json │ │ └── static.json │ ├── helpers/ │ │ └── .gitkeep │ ├── index.html │ ├── integration/ │ │ └── .gitkeep │ ├── test-helper.js │ └── unit/ │ └── .gitkeep └── vendor/ └── .gitkeep