├── .gitignore ├── README.md ├── defaultFiles ├── .gitignore ├── 404.html ├── lambda │ ├── lambda.js │ └── package.json ├── lambdaMain.js ├── robots.txt ├── routes.json └── swagger.json ├── hocus-delete ├── hocus-generate ├── index.js ├── lib ├── actions.js └── deployer.js ├── package.json └── test └── petstore.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johntitus/hocus/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johntitus/hocus/HEAD/README.md -------------------------------------------------------------------------------- /defaultFiles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johntitus/hocus/HEAD/defaultFiles/.gitignore -------------------------------------------------------------------------------- /defaultFiles/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johntitus/hocus/HEAD/defaultFiles/404.html -------------------------------------------------------------------------------- /defaultFiles/lambda/lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johntitus/hocus/HEAD/defaultFiles/lambda/lambda.js -------------------------------------------------------------------------------- /defaultFiles/lambda/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johntitus/hocus/HEAD/defaultFiles/lambda/package.json -------------------------------------------------------------------------------- /defaultFiles/lambdaMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johntitus/hocus/HEAD/defaultFiles/lambdaMain.js -------------------------------------------------------------------------------- /defaultFiles/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johntitus/hocus/HEAD/defaultFiles/robots.txt -------------------------------------------------------------------------------- /defaultFiles/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johntitus/hocus/HEAD/defaultFiles/routes.json -------------------------------------------------------------------------------- /defaultFiles/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johntitus/hocus/HEAD/defaultFiles/swagger.json -------------------------------------------------------------------------------- /hocus-delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johntitus/hocus/HEAD/hocus-delete -------------------------------------------------------------------------------- /hocus-generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johntitus/hocus/HEAD/hocus-generate -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johntitus/hocus/HEAD/index.js -------------------------------------------------------------------------------- /lib/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johntitus/hocus/HEAD/lib/actions.js -------------------------------------------------------------------------------- /lib/deployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johntitus/hocus/HEAD/lib/deployer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johntitus/hocus/HEAD/package.json -------------------------------------------------------------------------------- /test/petstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johntitus/hocus/HEAD/test/petstore.json --------------------------------------------------------------------------------