├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── customers ├── Dockerfile ├── containerpilot.json ├── customers.js ├── lib │ ├── data.js │ └── sales.js ├── package.json └── reload.sh ├── docker-compose.yml ├── docs └── arch.png ├── local-compose.yml ├── nginx ├── Dockerfile ├── containerpilot.json ├── index.html ├── index.js ├── nginx.conf ├── nginx.conf.ctmpl └── reload-nginx.sh ├── sales ├── Dockerfile ├── containerpilot.json ├── lib │ ├── customers.js │ └── data.js ├── package.json ├── reload.sh └── sales.js ├── shippable.yml └── tests ├── Dockerfile └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.pyc 3 | venv/ 4 | .DS_Store 5 | npm-debug.log 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/README.md -------------------------------------------------------------------------------- /customers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/customers/Dockerfile -------------------------------------------------------------------------------- /customers/containerpilot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/customers/containerpilot.json -------------------------------------------------------------------------------- /customers/customers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/customers/customers.js -------------------------------------------------------------------------------- /customers/lib/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/customers/lib/data.js -------------------------------------------------------------------------------- /customers/lib/sales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/customers/lib/sales.js -------------------------------------------------------------------------------- /customers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/customers/package.json -------------------------------------------------------------------------------- /customers/reload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/customers/reload.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/docs/arch.png -------------------------------------------------------------------------------- /local-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/local-compose.yml -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/containerpilot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/nginx/containerpilot.json -------------------------------------------------------------------------------- /nginx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/nginx/index.html -------------------------------------------------------------------------------- /nginx/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/nginx/index.js -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/nginx.conf.ctmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/nginx/nginx.conf.ctmpl -------------------------------------------------------------------------------- /nginx/reload-nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/nginx/reload-nginx.sh -------------------------------------------------------------------------------- /sales/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/sales/Dockerfile -------------------------------------------------------------------------------- /sales/containerpilot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/sales/containerpilot.json -------------------------------------------------------------------------------- /sales/lib/customers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/sales/lib/customers.js -------------------------------------------------------------------------------- /sales/lib/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/sales/lib/data.js -------------------------------------------------------------------------------- /sales/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/sales/package.json -------------------------------------------------------------------------------- /sales/reload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/sales/reload.sh -------------------------------------------------------------------------------- /sales/sales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/sales/sales.js -------------------------------------------------------------------------------- /shippable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/shippable.yml -------------------------------------------------------------------------------- /tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/tests/Dockerfile -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopilotpattern/workshop/HEAD/tests/tests.py --------------------------------------------------------------------------------