├── app ├── index.js ├── node_modules │ ├── .bin │ │ └── mime │ ├── .package-lock.json │ ├── accepts │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── array-flatten │ │ ├── LICENSE │ │ ├── README.md │ │ ├── array-flatten.js │ │ └── package.json │ ├── body-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── read.js │ │ │ └── types │ │ │ │ ├── json.js │ │ │ │ ├── raw.js │ │ │ │ ├── text.js │ │ │ │ └── urlencoded.js │ │ └── package.json │ ├── bytes │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── content-disposition │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── content-type │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── cookie-signature │ │ ├── .npmignore │ │ ├── History.md │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── cookie │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── debug │ │ ├── .coveralls.yml │ │ ├── .eslintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── component.json │ │ ├── karma.conf.js │ │ ├── node.js │ │ ├── package.json │ │ └── src │ │ │ ├── browser.js │ │ │ ├── debug.js │ │ │ ├── index.js │ │ │ ├── inspector-log.js │ │ │ └── node.js │ ├── depd │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── browser │ │ │ │ └── index.js │ │ │ └── compat │ │ │ │ ├── callsite-tostring.js │ │ │ │ ├── event-listener-count.js │ │ │ │ └── index.js │ │ └── package.json │ ├── destroy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── ee-first │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── encodeurl │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── escape-html │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── etag │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── express │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── application.js │ │ │ ├── express.js │ │ │ ├── middleware │ │ │ │ ├── init.js │ │ │ │ └── query.js │ │ │ ├── request.js │ │ │ ├── response.js │ │ │ ├── router │ │ │ │ ├── index.js │ │ │ │ ├── layer.js │ │ │ │ └── route.js │ │ │ ├── utils.js │ │ │ └── view.js │ │ └── package.json │ ├── finalhandler │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── forwarded │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── fresh │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── http-errors │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── iconv-lite │ │ ├── Changelog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── encodings │ │ │ ├── dbcs-codec.js │ │ │ ├── dbcs-data.js │ │ │ ├── index.js │ │ │ ├── internal.js │ │ │ ├── sbcs-codec.js │ │ │ ├── sbcs-data-generated.js │ │ │ ├── sbcs-data.js │ │ │ ├── tables │ │ │ │ ├── big5-added.json │ │ │ │ ├── cp936.json │ │ │ │ ├── cp949.json │ │ │ │ ├── cp950.json │ │ │ │ ├── eucjp.json │ │ │ │ ├── gb18030-ranges.json │ │ │ │ ├── gbk-added.json │ │ │ │ └── shiftjis.json │ │ │ ├── utf16.js │ │ │ └── utf7.js │ │ ├── lib │ │ │ ├── bom-handling.js │ │ │ ├── extend-node.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── streams.js │ │ └── package.json │ ├── inherits │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inherits.js │ │ ├── inherits_browser.js │ │ └── package.json │ ├── ipaddr.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ipaddr.min.js │ │ ├── lib │ │ │ ├── ipaddr.js │ │ │ └── ipaddr.js.d.ts │ │ └── package.json │ ├── media-typer │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── merge-descriptors │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── methods │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime-db │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── db.json │ │ ├── index.js │ │ └── package.json │ ├── mime-types │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cli.js │ │ ├── mime.js │ │ ├── package.json │ │ ├── src │ │ │ ├── build.js │ │ │ └── test.js │ │ └── types.json │ ├── ms │ │ ├── index.js │ │ ├── license.md │ │ ├── package.json │ │ └── readme.md │ ├── negotiator │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── charset.js │ │ │ ├── encoding.js │ │ │ ├── language.js │ │ │ └── mediaType.js │ │ └── package.json │ ├── on-finished │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── parseurl │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── path-to-regexp │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── proxy-addr │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── qs │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ └── qs.js │ │ ├── lib │ │ │ ├── formats.js │ │ │ ├── index.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── .eslintrc │ │ │ ├── index.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ ├── range-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── raw-body │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── safe-buffer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── safer-buffer │ │ ├── LICENSE │ │ ├── Porting-Buffer.md │ │ ├── Readme.md │ │ ├── dangerous.js │ │ ├── package.json │ │ ├── safer.js │ │ └── tests.js │ ├── send │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ └── ms │ │ │ │ ├── index.js │ │ │ │ ├── license.md │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── serve-static │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── setprototypeof │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ ├── statuses │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codes.json │ │ ├── index.js │ │ └── package.json │ ├── toidentifier │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── type-is │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── unpipe │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── utils-merge │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ └── vary │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json ├── package-lock.json └── package.json ├── docker ├── Dockerfile └── docker-compose.yaml ├── hosts ├── playbook.yaml └── roles ├── deploy_stack ├── .travis.yml ├── README.md ├── defaults │ └── main.yml ├── files │ └── docker-compose.yaml ├── handlers │ └── main.yml ├── meta │ └── main.yml ├── tasks │ └── main.yml ├── tests │ ├── inventory │ └── test.yml └── vars │ └── main.yml ├── docker_swarm_manager ├── .travis.yml ├── README.md ├── defaults │ └── main.yml ├── handlers │ └── main.yml ├── meta │ └── main.yml ├── tasks │ └── main.yml ├── tests │ ├── inventory │ └── test.yml └── vars │ └── main.yml ├── docker_swarm_worker ├── .travis.yml ├── README.md ├── defaults │ └── main.yml ├── handlers │ └── main.yml ├── meta │ └── main.yml ├── tasks │ └── main.yml ├── tests │ ├── inventory │ └── test.yml └── vars │ └── main.yml ├── install_docker ├── .travis.yml ├── README.md ├── defaults │ └── main.yml ├── handlers │ └── main.yml ├── meta │ └── main.yml ├── tasks │ └── main.yml ├── tests │ ├── inventory │ └── test.yml └── vars │ └── main.yml ├── install_nginx ├── .travis.yml ├── README.md ├── defaults │ └── main.yml ├── files │ ├── app.service │ └── package.json ├── handlers │ └── main.yml ├── meta │ └── main.yml ├── tasks │ └── main.yml ├── templates │ ├── index.js.j2 │ └── nginx.conf.j2 ├── tests │ ├── inventory │ └── test.yml └── vars │ └── main.yml └── main.yaml /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/index.js -------------------------------------------------------------------------------- /app/node_modules/.bin/mime: -------------------------------------------------------------------------------- 1 | ../mime/cli.js -------------------------------------------------------------------------------- /app/node_modules/.package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/.package-lock.json -------------------------------------------------------------------------------- /app/node_modules/accepts/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/accepts/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/accepts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/accepts/LICENSE -------------------------------------------------------------------------------- /app/node_modules/accepts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/accepts/README.md -------------------------------------------------------------------------------- /app/node_modules/accepts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/accepts/index.js -------------------------------------------------------------------------------- /app/node_modules/accepts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/accepts/package.json -------------------------------------------------------------------------------- /app/node_modules/array-flatten/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/array-flatten/LICENSE -------------------------------------------------------------------------------- /app/node_modules/array-flatten/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/array-flatten/README.md -------------------------------------------------------------------------------- /app/node_modules/array-flatten/array-flatten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/array-flatten/array-flatten.js -------------------------------------------------------------------------------- /app/node_modules/array-flatten/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/array-flatten/package.json -------------------------------------------------------------------------------- /app/node_modules/body-parser/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/body-parser/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/body-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/body-parser/LICENSE -------------------------------------------------------------------------------- /app/node_modules/body-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/body-parser/README.md -------------------------------------------------------------------------------- /app/node_modules/body-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/body-parser/index.js -------------------------------------------------------------------------------- /app/node_modules/body-parser/lib/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/body-parser/lib/read.js -------------------------------------------------------------------------------- /app/node_modules/body-parser/lib/types/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/body-parser/lib/types/json.js -------------------------------------------------------------------------------- /app/node_modules/body-parser/lib/types/raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/body-parser/lib/types/raw.js -------------------------------------------------------------------------------- /app/node_modules/body-parser/lib/types/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/body-parser/lib/types/text.js -------------------------------------------------------------------------------- /app/node_modules/body-parser/lib/types/urlencoded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/body-parser/lib/types/urlencoded.js -------------------------------------------------------------------------------- /app/node_modules/body-parser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/body-parser/package.json -------------------------------------------------------------------------------- /app/node_modules/bytes/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/bytes/History.md -------------------------------------------------------------------------------- /app/node_modules/bytes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/bytes/LICENSE -------------------------------------------------------------------------------- /app/node_modules/bytes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/bytes/Readme.md -------------------------------------------------------------------------------- /app/node_modules/bytes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/bytes/index.js -------------------------------------------------------------------------------- /app/node_modules/bytes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/bytes/package.json -------------------------------------------------------------------------------- /app/node_modules/content-disposition/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/content-disposition/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/content-disposition/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/content-disposition/LICENSE -------------------------------------------------------------------------------- /app/node_modules/content-disposition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/content-disposition/README.md -------------------------------------------------------------------------------- /app/node_modules/content-disposition/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/content-disposition/index.js -------------------------------------------------------------------------------- /app/node_modules/content-disposition/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/content-disposition/package.json -------------------------------------------------------------------------------- /app/node_modules/content-type/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/content-type/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/content-type/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/content-type/LICENSE -------------------------------------------------------------------------------- /app/node_modules/content-type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/content-type/README.md -------------------------------------------------------------------------------- /app/node_modules/content-type/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/content-type/index.js -------------------------------------------------------------------------------- /app/node_modules/content-type/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/content-type/package.json -------------------------------------------------------------------------------- /app/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /app/node_modules/cookie-signature/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/cookie-signature/History.md -------------------------------------------------------------------------------- /app/node_modules/cookie-signature/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/cookie-signature/Readme.md -------------------------------------------------------------------------------- /app/node_modules/cookie-signature/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/cookie-signature/index.js -------------------------------------------------------------------------------- /app/node_modules/cookie-signature/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/cookie-signature/package.json -------------------------------------------------------------------------------- /app/node_modules/cookie/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/cookie/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/cookie/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/cookie/LICENSE -------------------------------------------------------------------------------- /app/node_modules/cookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/cookie/README.md -------------------------------------------------------------------------------- /app/node_modules/cookie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/cookie/index.js -------------------------------------------------------------------------------- /app/node_modules/cookie/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/cookie/package.json -------------------------------------------------------------------------------- /app/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /app/node_modules/debug/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/debug/.eslintrc -------------------------------------------------------------------------------- /app/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/debug/.npmignore -------------------------------------------------------------------------------- /app/node_modules/debug/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/debug/.travis.yml -------------------------------------------------------------------------------- /app/node_modules/debug/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/debug/CHANGELOG.md -------------------------------------------------------------------------------- /app/node_modules/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/debug/LICENSE -------------------------------------------------------------------------------- /app/node_modules/debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/debug/Makefile -------------------------------------------------------------------------------- /app/node_modules/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/debug/README.md -------------------------------------------------------------------------------- /app/node_modules/debug/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/debug/component.json -------------------------------------------------------------------------------- /app/node_modules/debug/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/debug/karma.conf.js -------------------------------------------------------------------------------- /app/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /app/node_modules/debug/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/debug/package.json -------------------------------------------------------------------------------- /app/node_modules/debug/src/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/debug/src/browser.js -------------------------------------------------------------------------------- /app/node_modules/debug/src/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/debug/src/debug.js -------------------------------------------------------------------------------- /app/node_modules/debug/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/debug/src/index.js -------------------------------------------------------------------------------- /app/node_modules/debug/src/inspector-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/debug/src/inspector-log.js -------------------------------------------------------------------------------- /app/node_modules/debug/src/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/debug/src/node.js -------------------------------------------------------------------------------- /app/node_modules/depd/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/depd/History.md -------------------------------------------------------------------------------- /app/node_modules/depd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/depd/LICENSE -------------------------------------------------------------------------------- /app/node_modules/depd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/depd/Readme.md -------------------------------------------------------------------------------- /app/node_modules/depd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/depd/index.js -------------------------------------------------------------------------------- /app/node_modules/depd/lib/browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/depd/lib/browser/index.js -------------------------------------------------------------------------------- /app/node_modules/depd/lib/compat/callsite-tostring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/depd/lib/compat/callsite-tostring.js -------------------------------------------------------------------------------- /app/node_modules/depd/lib/compat/event-listener-count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/depd/lib/compat/event-listener-count.js -------------------------------------------------------------------------------- /app/node_modules/depd/lib/compat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/depd/lib/compat/index.js -------------------------------------------------------------------------------- /app/node_modules/depd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/depd/package.json -------------------------------------------------------------------------------- /app/node_modules/destroy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/destroy/LICENSE -------------------------------------------------------------------------------- /app/node_modules/destroy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/destroy/README.md -------------------------------------------------------------------------------- /app/node_modules/destroy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/destroy/index.js -------------------------------------------------------------------------------- /app/node_modules/destroy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/destroy/package.json -------------------------------------------------------------------------------- /app/node_modules/ee-first/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/ee-first/LICENSE -------------------------------------------------------------------------------- /app/node_modules/ee-first/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/ee-first/README.md -------------------------------------------------------------------------------- /app/node_modules/ee-first/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/ee-first/index.js -------------------------------------------------------------------------------- /app/node_modules/ee-first/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/ee-first/package.json -------------------------------------------------------------------------------- /app/node_modules/encodeurl/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/encodeurl/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/encodeurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/encodeurl/LICENSE -------------------------------------------------------------------------------- /app/node_modules/encodeurl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/encodeurl/README.md -------------------------------------------------------------------------------- /app/node_modules/encodeurl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/encodeurl/index.js -------------------------------------------------------------------------------- /app/node_modules/encodeurl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/encodeurl/package.json -------------------------------------------------------------------------------- /app/node_modules/escape-html/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/escape-html/LICENSE -------------------------------------------------------------------------------- /app/node_modules/escape-html/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/escape-html/Readme.md -------------------------------------------------------------------------------- /app/node_modules/escape-html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/escape-html/index.js -------------------------------------------------------------------------------- /app/node_modules/escape-html/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/escape-html/package.json -------------------------------------------------------------------------------- /app/node_modules/etag/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/etag/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/etag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/etag/LICENSE -------------------------------------------------------------------------------- /app/node_modules/etag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/etag/README.md -------------------------------------------------------------------------------- /app/node_modules/etag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/etag/index.js -------------------------------------------------------------------------------- /app/node_modules/etag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/etag/package.json -------------------------------------------------------------------------------- /app/node_modules/express/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/express/History.md -------------------------------------------------------------------------------- /app/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/express/LICENSE -------------------------------------------------------------------------------- /app/node_modules/express/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/express/Readme.md -------------------------------------------------------------------------------- /app/node_modules/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/express/index.js -------------------------------------------------------------------------------- /app/node_modules/express/lib/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/express/lib/application.js -------------------------------------------------------------------------------- /app/node_modules/express/lib/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/express/lib/express.js -------------------------------------------------------------------------------- /app/node_modules/express/lib/middleware/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/express/lib/middleware/init.js -------------------------------------------------------------------------------- /app/node_modules/express/lib/middleware/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/express/lib/middleware/query.js -------------------------------------------------------------------------------- /app/node_modules/express/lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/express/lib/request.js -------------------------------------------------------------------------------- /app/node_modules/express/lib/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/express/lib/response.js -------------------------------------------------------------------------------- /app/node_modules/express/lib/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/express/lib/router/index.js -------------------------------------------------------------------------------- /app/node_modules/express/lib/router/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/express/lib/router/layer.js -------------------------------------------------------------------------------- /app/node_modules/express/lib/router/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/express/lib/router/route.js -------------------------------------------------------------------------------- /app/node_modules/express/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/express/lib/utils.js -------------------------------------------------------------------------------- /app/node_modules/express/lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/express/lib/view.js -------------------------------------------------------------------------------- /app/node_modules/express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/express/package.json -------------------------------------------------------------------------------- /app/node_modules/finalhandler/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/finalhandler/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/finalhandler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/finalhandler/LICENSE -------------------------------------------------------------------------------- /app/node_modules/finalhandler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/finalhandler/README.md -------------------------------------------------------------------------------- /app/node_modules/finalhandler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/finalhandler/index.js -------------------------------------------------------------------------------- /app/node_modules/finalhandler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/finalhandler/package.json -------------------------------------------------------------------------------- /app/node_modules/forwarded/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/forwarded/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/forwarded/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/forwarded/LICENSE -------------------------------------------------------------------------------- /app/node_modules/forwarded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/forwarded/README.md -------------------------------------------------------------------------------- /app/node_modules/forwarded/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/forwarded/index.js -------------------------------------------------------------------------------- /app/node_modules/forwarded/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/forwarded/package.json -------------------------------------------------------------------------------- /app/node_modules/fresh/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/fresh/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/fresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/fresh/LICENSE -------------------------------------------------------------------------------- /app/node_modules/fresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/fresh/README.md -------------------------------------------------------------------------------- /app/node_modules/fresh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/fresh/index.js -------------------------------------------------------------------------------- /app/node_modules/fresh/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/fresh/package.json -------------------------------------------------------------------------------- /app/node_modules/http-errors/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/http-errors/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/http-errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/http-errors/LICENSE -------------------------------------------------------------------------------- /app/node_modules/http-errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/http-errors/README.md -------------------------------------------------------------------------------- /app/node_modules/http-errors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/http-errors/index.js -------------------------------------------------------------------------------- /app/node_modules/http-errors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/http-errors/package.json -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/Changelog.md -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/LICENSE -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/README.md -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/encodings/dbcs-codec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/encodings/dbcs-codec.js -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/encodings/dbcs-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/encodings/dbcs-data.js -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/encodings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/encodings/index.js -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/encodings/internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/encodings/internal.js -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/encodings/sbcs-codec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/encodings/sbcs-codec.js -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/encodings/sbcs-data-generated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/encodings/sbcs-data-generated.js -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/encodings/sbcs-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/encodings/sbcs-data.js -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/encodings/tables/big5-added.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/encodings/tables/big5-added.json -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/encodings/tables/cp936.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/encodings/tables/cp936.json -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/encodings/tables/cp949.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/encodings/tables/cp949.json -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/encodings/tables/cp950.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/encodings/tables/cp950.json -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/encodings/tables/eucjp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/encodings/tables/eucjp.json -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/encodings/tables/gbk-added.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/encodings/tables/gbk-added.json -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/encodings/tables/shiftjis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/encodings/tables/shiftjis.json -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/encodings/utf16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/encodings/utf16.js -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/encodings/utf7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/encodings/utf7.js -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/lib/bom-handling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/lib/bom-handling.js -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/lib/extend-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/lib/extend-node.js -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/lib/index.d.ts -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/lib/index.js -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/lib/streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/lib/streams.js -------------------------------------------------------------------------------- /app/node_modules/iconv-lite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/iconv-lite/package.json -------------------------------------------------------------------------------- /app/node_modules/inherits/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/inherits/LICENSE -------------------------------------------------------------------------------- /app/node_modules/inherits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/inherits/README.md -------------------------------------------------------------------------------- /app/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/inherits/inherits.js -------------------------------------------------------------------------------- /app/node_modules/inherits/inherits_browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/inherits/inherits_browser.js -------------------------------------------------------------------------------- /app/node_modules/inherits/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/inherits/package.json -------------------------------------------------------------------------------- /app/node_modules/ipaddr.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/ipaddr.js/LICENSE -------------------------------------------------------------------------------- /app/node_modules/ipaddr.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/ipaddr.js/README.md -------------------------------------------------------------------------------- /app/node_modules/ipaddr.js/ipaddr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/ipaddr.js/ipaddr.min.js -------------------------------------------------------------------------------- /app/node_modules/ipaddr.js/lib/ipaddr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/ipaddr.js/lib/ipaddr.js -------------------------------------------------------------------------------- /app/node_modules/ipaddr.js/lib/ipaddr.js.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/ipaddr.js/lib/ipaddr.js.d.ts -------------------------------------------------------------------------------- /app/node_modules/ipaddr.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/ipaddr.js/package.json -------------------------------------------------------------------------------- /app/node_modules/media-typer/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/media-typer/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/media-typer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/media-typer/LICENSE -------------------------------------------------------------------------------- /app/node_modules/media-typer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/media-typer/README.md -------------------------------------------------------------------------------- /app/node_modules/media-typer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/media-typer/index.js -------------------------------------------------------------------------------- /app/node_modules/media-typer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/media-typer/package.json -------------------------------------------------------------------------------- /app/node_modules/merge-descriptors/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/merge-descriptors/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/merge-descriptors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/merge-descriptors/LICENSE -------------------------------------------------------------------------------- /app/node_modules/merge-descriptors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/merge-descriptors/README.md -------------------------------------------------------------------------------- /app/node_modules/merge-descriptors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/merge-descriptors/index.js -------------------------------------------------------------------------------- /app/node_modules/merge-descriptors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/merge-descriptors/package.json -------------------------------------------------------------------------------- /app/node_modules/methods/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/methods/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/methods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/methods/LICENSE -------------------------------------------------------------------------------- /app/node_modules/methods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/methods/README.md -------------------------------------------------------------------------------- /app/node_modules/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/methods/index.js -------------------------------------------------------------------------------- /app/node_modules/methods/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/methods/package.json -------------------------------------------------------------------------------- /app/node_modules/mime-db/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime-db/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/mime-db/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime-db/LICENSE -------------------------------------------------------------------------------- /app/node_modules/mime-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime-db/README.md -------------------------------------------------------------------------------- /app/node_modules/mime-db/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime-db/db.json -------------------------------------------------------------------------------- /app/node_modules/mime-db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime-db/index.js -------------------------------------------------------------------------------- /app/node_modules/mime-db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime-db/package.json -------------------------------------------------------------------------------- /app/node_modules/mime-types/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime-types/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/mime-types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime-types/LICENSE -------------------------------------------------------------------------------- /app/node_modules/mime-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime-types/README.md -------------------------------------------------------------------------------- /app/node_modules/mime-types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime-types/index.js -------------------------------------------------------------------------------- /app/node_modules/mime-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime-types/package.json -------------------------------------------------------------------------------- /app/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/node_modules/mime/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime/CHANGELOG.md -------------------------------------------------------------------------------- /app/node_modules/mime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime/LICENSE -------------------------------------------------------------------------------- /app/node_modules/mime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime/README.md -------------------------------------------------------------------------------- /app/node_modules/mime/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime/cli.js -------------------------------------------------------------------------------- /app/node_modules/mime/mime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime/mime.js -------------------------------------------------------------------------------- /app/node_modules/mime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime/package.json -------------------------------------------------------------------------------- /app/node_modules/mime/src/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime/src/build.js -------------------------------------------------------------------------------- /app/node_modules/mime/src/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime/src/test.js -------------------------------------------------------------------------------- /app/node_modules/mime/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/mime/types.json -------------------------------------------------------------------------------- /app/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/ms/index.js -------------------------------------------------------------------------------- /app/node_modules/ms/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/ms/license.md -------------------------------------------------------------------------------- /app/node_modules/ms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/ms/package.json -------------------------------------------------------------------------------- /app/node_modules/ms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/ms/readme.md -------------------------------------------------------------------------------- /app/node_modules/negotiator/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/negotiator/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/negotiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/negotiator/LICENSE -------------------------------------------------------------------------------- /app/node_modules/negotiator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/negotiator/README.md -------------------------------------------------------------------------------- /app/node_modules/negotiator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/negotiator/index.js -------------------------------------------------------------------------------- /app/node_modules/negotiator/lib/charset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/negotiator/lib/charset.js -------------------------------------------------------------------------------- /app/node_modules/negotiator/lib/encoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/negotiator/lib/encoding.js -------------------------------------------------------------------------------- /app/node_modules/negotiator/lib/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/negotiator/lib/language.js -------------------------------------------------------------------------------- /app/node_modules/negotiator/lib/mediaType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/negotiator/lib/mediaType.js -------------------------------------------------------------------------------- /app/node_modules/negotiator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/negotiator/package.json -------------------------------------------------------------------------------- /app/node_modules/on-finished/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/on-finished/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/on-finished/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/on-finished/LICENSE -------------------------------------------------------------------------------- /app/node_modules/on-finished/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/on-finished/README.md -------------------------------------------------------------------------------- /app/node_modules/on-finished/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/on-finished/index.js -------------------------------------------------------------------------------- /app/node_modules/on-finished/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/on-finished/package.json -------------------------------------------------------------------------------- /app/node_modules/parseurl/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/parseurl/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/parseurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/parseurl/LICENSE -------------------------------------------------------------------------------- /app/node_modules/parseurl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/parseurl/README.md -------------------------------------------------------------------------------- /app/node_modules/parseurl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/parseurl/index.js -------------------------------------------------------------------------------- /app/node_modules/parseurl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/parseurl/package.json -------------------------------------------------------------------------------- /app/node_modules/path-to-regexp/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/path-to-regexp/History.md -------------------------------------------------------------------------------- /app/node_modules/path-to-regexp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/path-to-regexp/LICENSE -------------------------------------------------------------------------------- /app/node_modules/path-to-regexp/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/path-to-regexp/Readme.md -------------------------------------------------------------------------------- /app/node_modules/path-to-regexp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/path-to-regexp/index.js -------------------------------------------------------------------------------- /app/node_modules/path-to-regexp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/path-to-regexp/package.json -------------------------------------------------------------------------------- /app/node_modules/proxy-addr/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/proxy-addr/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/proxy-addr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/proxy-addr/LICENSE -------------------------------------------------------------------------------- /app/node_modules/proxy-addr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/proxy-addr/README.md -------------------------------------------------------------------------------- /app/node_modules/proxy-addr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/proxy-addr/index.js -------------------------------------------------------------------------------- /app/node_modules/proxy-addr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/proxy-addr/package.json -------------------------------------------------------------------------------- /app/node_modules/qs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/qs/.editorconfig -------------------------------------------------------------------------------- /app/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /app/node_modules/qs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/qs/.eslintrc -------------------------------------------------------------------------------- /app/node_modules/qs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/qs/CHANGELOG.md -------------------------------------------------------------------------------- /app/node_modules/qs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/qs/LICENSE -------------------------------------------------------------------------------- /app/node_modules/qs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/qs/README.md -------------------------------------------------------------------------------- /app/node_modules/qs/dist/qs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/qs/dist/qs.js -------------------------------------------------------------------------------- /app/node_modules/qs/lib/formats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/qs/lib/formats.js -------------------------------------------------------------------------------- /app/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/qs/lib/index.js -------------------------------------------------------------------------------- /app/node_modules/qs/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/qs/lib/parse.js -------------------------------------------------------------------------------- /app/node_modules/qs/lib/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/qs/lib/stringify.js -------------------------------------------------------------------------------- /app/node_modules/qs/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/qs/lib/utils.js -------------------------------------------------------------------------------- /app/node_modules/qs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/qs/package.json -------------------------------------------------------------------------------- /app/node_modules/qs/test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/qs/test/.eslintrc -------------------------------------------------------------------------------- /app/node_modules/qs/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/qs/test/index.js -------------------------------------------------------------------------------- /app/node_modules/qs/test/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/qs/test/parse.js -------------------------------------------------------------------------------- /app/node_modules/qs/test/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/qs/test/stringify.js -------------------------------------------------------------------------------- /app/node_modules/qs/test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/qs/test/utils.js -------------------------------------------------------------------------------- /app/node_modules/range-parser/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/range-parser/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/range-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/range-parser/LICENSE -------------------------------------------------------------------------------- /app/node_modules/range-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/range-parser/README.md -------------------------------------------------------------------------------- /app/node_modules/range-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/range-parser/index.js -------------------------------------------------------------------------------- /app/node_modules/range-parser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/range-parser/package.json -------------------------------------------------------------------------------- /app/node_modules/raw-body/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/raw-body/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/raw-body/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/raw-body/LICENSE -------------------------------------------------------------------------------- /app/node_modules/raw-body/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/raw-body/README.md -------------------------------------------------------------------------------- /app/node_modules/raw-body/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/raw-body/index.d.ts -------------------------------------------------------------------------------- /app/node_modules/raw-body/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/raw-body/index.js -------------------------------------------------------------------------------- /app/node_modules/raw-body/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/raw-body/package.json -------------------------------------------------------------------------------- /app/node_modules/safe-buffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/safe-buffer/LICENSE -------------------------------------------------------------------------------- /app/node_modules/safe-buffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/safe-buffer/README.md -------------------------------------------------------------------------------- /app/node_modules/safe-buffer/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/safe-buffer/index.d.ts -------------------------------------------------------------------------------- /app/node_modules/safe-buffer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/safe-buffer/index.js -------------------------------------------------------------------------------- /app/node_modules/safe-buffer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/safe-buffer/package.json -------------------------------------------------------------------------------- /app/node_modules/safer-buffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/safer-buffer/LICENSE -------------------------------------------------------------------------------- /app/node_modules/safer-buffer/Porting-Buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/safer-buffer/Porting-Buffer.md -------------------------------------------------------------------------------- /app/node_modules/safer-buffer/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/safer-buffer/Readme.md -------------------------------------------------------------------------------- /app/node_modules/safer-buffer/dangerous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/safer-buffer/dangerous.js -------------------------------------------------------------------------------- /app/node_modules/safer-buffer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/safer-buffer/package.json -------------------------------------------------------------------------------- /app/node_modules/safer-buffer/safer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/safer-buffer/safer.js -------------------------------------------------------------------------------- /app/node_modules/safer-buffer/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/safer-buffer/tests.js -------------------------------------------------------------------------------- /app/node_modules/send/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/send/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/send/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/send/LICENSE -------------------------------------------------------------------------------- /app/node_modules/send/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/send/README.md -------------------------------------------------------------------------------- /app/node_modules/send/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/send/index.js -------------------------------------------------------------------------------- /app/node_modules/send/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/send/node_modules/ms/index.js -------------------------------------------------------------------------------- /app/node_modules/send/node_modules/ms/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/send/node_modules/ms/license.md -------------------------------------------------------------------------------- /app/node_modules/send/node_modules/ms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/send/node_modules/ms/package.json -------------------------------------------------------------------------------- /app/node_modules/send/node_modules/ms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/send/node_modules/ms/readme.md -------------------------------------------------------------------------------- /app/node_modules/send/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/send/package.json -------------------------------------------------------------------------------- /app/node_modules/serve-static/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/serve-static/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/serve-static/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/serve-static/LICENSE -------------------------------------------------------------------------------- /app/node_modules/serve-static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/serve-static/README.md -------------------------------------------------------------------------------- /app/node_modules/serve-static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/serve-static/index.js -------------------------------------------------------------------------------- /app/node_modules/serve-static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/serve-static/package.json -------------------------------------------------------------------------------- /app/node_modules/setprototypeof/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/setprototypeof/LICENSE -------------------------------------------------------------------------------- /app/node_modules/setprototypeof/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/setprototypeof/README.md -------------------------------------------------------------------------------- /app/node_modules/setprototypeof/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/setprototypeof/index.d.ts -------------------------------------------------------------------------------- /app/node_modules/setprototypeof/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/setprototypeof/index.js -------------------------------------------------------------------------------- /app/node_modules/setprototypeof/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/setprototypeof/package.json -------------------------------------------------------------------------------- /app/node_modules/setprototypeof/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/setprototypeof/test/index.js -------------------------------------------------------------------------------- /app/node_modules/statuses/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/statuses/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/statuses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/statuses/LICENSE -------------------------------------------------------------------------------- /app/node_modules/statuses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/statuses/README.md -------------------------------------------------------------------------------- /app/node_modules/statuses/codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/statuses/codes.json -------------------------------------------------------------------------------- /app/node_modules/statuses/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/statuses/index.js -------------------------------------------------------------------------------- /app/node_modules/statuses/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/statuses/package.json -------------------------------------------------------------------------------- /app/node_modules/toidentifier/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/toidentifier/LICENSE -------------------------------------------------------------------------------- /app/node_modules/toidentifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/toidentifier/README.md -------------------------------------------------------------------------------- /app/node_modules/toidentifier/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/toidentifier/index.js -------------------------------------------------------------------------------- /app/node_modules/toidentifier/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/toidentifier/package.json -------------------------------------------------------------------------------- /app/node_modules/type-is/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/type-is/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/type-is/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/type-is/LICENSE -------------------------------------------------------------------------------- /app/node_modules/type-is/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/type-is/README.md -------------------------------------------------------------------------------- /app/node_modules/type-is/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/type-is/index.js -------------------------------------------------------------------------------- /app/node_modules/type-is/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/type-is/package.json -------------------------------------------------------------------------------- /app/node_modules/unpipe/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/unpipe/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/unpipe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/unpipe/LICENSE -------------------------------------------------------------------------------- /app/node_modules/unpipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/unpipe/README.md -------------------------------------------------------------------------------- /app/node_modules/unpipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/unpipe/index.js -------------------------------------------------------------------------------- /app/node_modules/unpipe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/unpipe/package.json -------------------------------------------------------------------------------- /app/node_modules/utils-merge/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/utils-merge/.npmignore -------------------------------------------------------------------------------- /app/node_modules/utils-merge/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/utils-merge/LICENSE -------------------------------------------------------------------------------- /app/node_modules/utils-merge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/utils-merge/README.md -------------------------------------------------------------------------------- /app/node_modules/utils-merge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/utils-merge/index.js -------------------------------------------------------------------------------- /app/node_modules/utils-merge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/utils-merge/package.json -------------------------------------------------------------------------------- /app/node_modules/vary/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/vary/HISTORY.md -------------------------------------------------------------------------------- /app/node_modules/vary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/vary/LICENSE -------------------------------------------------------------------------------- /app/node_modules/vary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/vary/README.md -------------------------------------------------------------------------------- /app/node_modules/vary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/vary/index.js -------------------------------------------------------------------------------- /app/node_modules/vary/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/node_modules/vary/package.json -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/app/package.json -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/docker/docker-compose.yaml -------------------------------------------------------------------------------- /hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/hosts -------------------------------------------------------------------------------- /playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/playbook.yaml -------------------------------------------------------------------------------- /roles/deploy_stack/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/deploy_stack/.travis.yml -------------------------------------------------------------------------------- /roles/deploy_stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/deploy_stack/README.md -------------------------------------------------------------------------------- /roles/deploy_stack/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for deploy_stack 3 | -------------------------------------------------------------------------------- /roles/deploy_stack/files/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/deploy_stack/files/docker-compose.yaml -------------------------------------------------------------------------------- /roles/deploy_stack/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for deploy_stack 3 | -------------------------------------------------------------------------------- /roles/deploy_stack/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/deploy_stack/meta/main.yml -------------------------------------------------------------------------------- /roles/deploy_stack/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/deploy_stack/tasks/main.yml -------------------------------------------------------------------------------- /roles/deploy_stack/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/deploy_stack/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/deploy_stack/tests/test.yml -------------------------------------------------------------------------------- /roles/deploy_stack/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for deploy_stack 3 | -------------------------------------------------------------------------------- /roles/docker_swarm_manager/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/docker_swarm_manager/.travis.yml -------------------------------------------------------------------------------- /roles/docker_swarm_manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/docker_swarm_manager/README.md -------------------------------------------------------------------------------- /roles/docker_swarm_manager/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for docker_swarm_manager 3 | -------------------------------------------------------------------------------- /roles/docker_swarm_manager/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for docker_swarm_manager 3 | -------------------------------------------------------------------------------- /roles/docker_swarm_manager/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/docker_swarm_manager/meta/main.yml -------------------------------------------------------------------------------- /roles/docker_swarm_manager/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/docker_swarm_manager/tasks/main.yml -------------------------------------------------------------------------------- /roles/docker_swarm_manager/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/docker_swarm_manager/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/docker_swarm_manager/tests/test.yml -------------------------------------------------------------------------------- /roles/docker_swarm_manager/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for docker_swarm_manager 3 | -------------------------------------------------------------------------------- /roles/docker_swarm_worker/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/docker_swarm_worker/.travis.yml -------------------------------------------------------------------------------- /roles/docker_swarm_worker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/docker_swarm_worker/README.md -------------------------------------------------------------------------------- /roles/docker_swarm_worker/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for docker_swarm_worker 3 | -------------------------------------------------------------------------------- /roles/docker_swarm_worker/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for docker_swarm_worker 3 | -------------------------------------------------------------------------------- /roles/docker_swarm_worker/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/docker_swarm_worker/meta/main.yml -------------------------------------------------------------------------------- /roles/docker_swarm_worker/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/docker_swarm_worker/tasks/main.yml -------------------------------------------------------------------------------- /roles/docker_swarm_worker/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/docker_swarm_worker/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/docker_swarm_worker/tests/test.yml -------------------------------------------------------------------------------- /roles/docker_swarm_worker/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for docker_swarm_worker 3 | -------------------------------------------------------------------------------- /roles/install_docker/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/install_docker/.travis.yml -------------------------------------------------------------------------------- /roles/install_docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/install_docker/README.md -------------------------------------------------------------------------------- /roles/install_docker/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for install_docker 3 | -------------------------------------------------------------------------------- /roles/install_docker/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for install_docker 3 | -------------------------------------------------------------------------------- /roles/install_docker/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/install_docker/meta/main.yml -------------------------------------------------------------------------------- /roles/install_docker/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/install_docker/tasks/main.yml -------------------------------------------------------------------------------- /roles/install_docker/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/install_docker/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/install_docker/tests/test.yml -------------------------------------------------------------------------------- /roles/install_docker/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for install_docker 3 | -------------------------------------------------------------------------------- /roles/install_nginx/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/install_nginx/.travis.yml -------------------------------------------------------------------------------- /roles/install_nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/install_nginx/README.md -------------------------------------------------------------------------------- /roles/install_nginx/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for install_nginx 3 | -------------------------------------------------------------------------------- /roles/install_nginx/files/app.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/install_nginx/files/app.service -------------------------------------------------------------------------------- /roles/install_nginx/files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/install_nginx/files/package.json -------------------------------------------------------------------------------- /roles/install_nginx/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/install_nginx/handlers/main.yml -------------------------------------------------------------------------------- /roles/install_nginx/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/install_nginx/meta/main.yml -------------------------------------------------------------------------------- /roles/install_nginx/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/install_nginx/tasks/main.yml -------------------------------------------------------------------------------- /roles/install_nginx/templates/index.js.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/install_nginx/templates/index.js.j2 -------------------------------------------------------------------------------- /roles/install_nginx/templates/nginx.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/install_nginx/templates/nginx.conf.j2 -------------------------------------------------------------------------------- /roles/install_nginx/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/install_nginx/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/install_nginx/tests/test.yml -------------------------------------------------------------------------------- /roles/install_nginx/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/install_nginx/vars/main.yml -------------------------------------------------------------------------------- /roles/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfullcycle/fc-ansible/HEAD/roles/main.yaml --------------------------------------------------------------------------------