├── .env ├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── deploy-swarm.md ├── docker-compose.yml └── functions ├── api-create ├── Dockerfile ├── handler.js └── package.json ├── api-delete ├── Dockerfile ├── handler.js └── package.json ├── api-read ├── Dockerfile ├── handler.js └── package.json └── api-update ├── Dockerfile ├── handler.js └── package.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | template 2 | build 3 | env.yml 4 | .DS_Store 5 | .video 6 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/README.md -------------------------------------------------------------------------------- /deploy-swarm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/deploy-swarm.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /functions/api-create/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/functions/api-create/Dockerfile -------------------------------------------------------------------------------- /functions/api-create/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/functions/api-create/handler.js -------------------------------------------------------------------------------- /functions/api-create/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/functions/api-create/package.json -------------------------------------------------------------------------------- /functions/api-delete/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/functions/api-delete/Dockerfile -------------------------------------------------------------------------------- /functions/api-delete/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/functions/api-delete/handler.js -------------------------------------------------------------------------------- /functions/api-delete/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/functions/api-delete/package.json -------------------------------------------------------------------------------- /functions/api-read/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/functions/api-read/Dockerfile -------------------------------------------------------------------------------- /functions/api-read/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/functions/api-read/handler.js -------------------------------------------------------------------------------- /functions/api-read/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/functions/api-read/package.json -------------------------------------------------------------------------------- /functions/api-update/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/functions/api-update/Dockerfile -------------------------------------------------------------------------------- /functions/api-update/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/functions/api-update/handler.js -------------------------------------------------------------------------------- /functions/api-update/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/openfass-node-restful-api/HEAD/functions/api-update/package.json --------------------------------------------------------------------------------