gitextract_r83ys1rm/ ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .snyk ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── appveyor.yml ├── config.json ├── index.js ├── japaFile.js ├── lib/ │ ├── Steps.js │ └── ace.js ├── package.json ├── src/ │ ├── Commands/ │ │ ├── Addon/ │ │ │ └── index.js │ │ ├── Base/ │ │ │ └── index.js │ │ ├── Install/ │ │ │ └── index.js │ │ ├── Instructions/ │ │ │ ├── Context.js │ │ │ └── index.js │ │ ├── KeyGenerate/ │ │ │ └── index.js │ │ ├── Make/ │ │ │ ├── Base.js │ │ │ ├── Command.js │ │ │ ├── Controller.js │ │ │ ├── Exception.js │ │ │ ├── ExceptionHandler.js │ │ │ ├── Hook.js │ │ │ ├── Listener.js │ │ │ ├── Middleware.js │ │ │ ├── Migration.js │ │ │ ├── Model.js │ │ │ ├── Provider.js │ │ │ ├── Seed.js │ │ │ ├── Trait.js │ │ │ └── View.js │ │ ├── New/ │ │ │ └── index.js │ │ ├── Repl/ │ │ │ └── index.js │ │ ├── RouteList/ │ │ │ └── index.js │ │ ├── Serve/ │ │ │ └── index.js │ │ └── index.js │ ├── Generators/ │ │ ├── index.js │ │ └── templates/ │ │ ├── command.mustache │ │ ├── exception.mustache │ │ ├── exceptionHandler.mustache │ │ ├── hook.mustache │ │ ├── httpController.mustache │ │ ├── listener.mustache │ │ ├── middleware.mustache │ │ ├── model.mustache │ │ ├── provider.mustache │ │ ├── schema.mustache │ │ ├── seed.mustache │ │ ├── trait.mustache │ │ ├── view.mustache │ │ └── wsController.mustache │ └── Services/ │ ├── check-node-version.js │ ├── clone.js │ ├── copy-env-file.js │ ├── exec.js │ ├── generate-app-key.js │ ├── install.js │ ├── render-instructions-md.js │ ├── run-instructions.js │ └── verify-existing-folder.js └── test/ ├── clone.spec.js ├── copy-env-file.spec.js ├── generators.spec.js ├── install.spec.js ├── new.spec.js ├── run-instructions.spec.js └── verify-existing-folder.spec.js