├── .gitattributes ├── .gitignore ├── Chapter01 ├── README.md ├── hello.py └── requirements.txt ├── Chapter02 ├── README.md ├── app.py ├── flask_test.py ├── mydb.db └── requirements.txt ├── Chapter03 ├── README.md ├── app.py ├── flask_test.py ├── mydb.db ├── requirements.txt ├── static │ ├── app.js │ ├── style.css │ └── tweet.js └── templates │ ├── addname.html │ ├── addtweets.html │ ├── adduser.html │ └── main.html ├── Chapter04 ├── README.md ├── app.py ├── flask_test.py ├── requirements.txt ├── static │ ├── app.js │ ├── style.css │ └── tweet.js └── templates │ ├── addname.html │ ├── addtweets.html │ ├── adduser.html │ └── main.html ├── Chapter05 ├── README.md ├── __pycache__ │ └── requests.cpython-34.pyc ├── app.py ├── node_modules │ ├── .bin │ │ ├── r.js │ │ └── r_js │ └── requirejs │ │ ├── README.md │ │ ├── bin │ │ └── r.js │ │ ├── package.json │ │ └── require.js ├── package.json ├── requests.py ├── requirements.txt ├── static │ ├── build │ │ ├── bundle.js │ │ └── bundle.js.map │ ├── components │ │ ├── Tweet.js │ │ ├── TweetList.js │ │ └── templatetweet.js │ ├── css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── jquery.js │ ├── main.js │ └── style.css ├── templates │ ├── index.html │ ├── layout.html │ ├── login.html │ ├── profile.html │ └── signup.html └── webpack.config.js ├── Chapter06 ├── README.md ├── app.py ├── package.json ├── requests.py ├── requirements.txt ├── static │ ├── API.jsx │ ├── actions │ │ ├── SActions.jsx │ │ └── Tactions.jsx │ ├── build │ │ ├── bundle.js │ │ └── bundle.js.map │ ├── components │ │ ├── Tweet.jsx │ │ ├── TweetList.jsx │ │ └── templatetweet.jsx │ ├── constants.jsx │ ├── css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── dispatcher.jsx │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── jquery.js │ ├── main.jsx │ ├── stores │ │ └── TStore.jsx │ └── style.css ├── templates │ ├── index.html │ ├── layout.html │ ├── login.html │ ├── profile.html │ └── signup.html └── webpack.config.js ├── Chapter07 ├── README.md ├── __pycache__ │ ├── models.cpython-34.pyc │ └── requests.cpython-34.pyc ├── app.py ├── build.js ├── eventsourcing │ ├── aggregate.py │ ├── command_handler.py │ ├── commands.py │ ├── errors.py │ ├── events.py │ └── main.py ├── package.json ├── requests.py ├── requirements.txt ├── static │ ├── API.jsx │ ├── actions │ │ ├── SActions.jsx │ │ └── Tactions.jsx │ ├── build │ │ ├── bundle.js │ │ └── bundle.js.map │ ├── components │ │ ├── Tweet.jsx │ │ ├── TweetList.jsx │ │ └── templatetweet.jsx │ ├── constants.jsx │ ├── css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── dispatcher.jsx │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── jquery.js │ ├── main.jsx │ ├── stores │ │ └── TStore.jsx │ └── style.css ├── templates │ ├── index.html │ ├── layout.html │ ├── login.html │ ├── profile.html │ └── signup.html └── webpack.config.js ├── Chapter08 ├── README.md ├── app.py ├── build.js ├── package.json ├── request.py ├── requirements.txt ├── static │ ├── API.jsx │ ├── actions │ │ ├── SActions.jsx │ │ └── Tactions.jsx │ ├── build │ │ ├── bundle.js │ │ └── bundle.js.map │ ├── components │ │ ├── Tweet.jsx │ │ ├── TweetList.jsx │ │ └── templatetweet.jsx │ ├── constants.jsx │ ├── css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── dispatcher.jsx │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── jquery.js │ ├── main.jsx │ ├── stores │ │ └── TStore.jsx │ └── style.css ├── templates │ ├── index.html │ ├── layout.html │ ├── login.html │ ├── profile.html │ └── signup.html └── webpack.config.js ├── Chapter10 ├── README.md ├── app │ ├── Dockerfile │ └── cloud-native-app │ │ ├── __pycache__ │ │ ├── models.cpython-34.pyc │ │ └── requests.cpython-34.pyc │ │ ├── app.py │ │ ├── build.js │ │ ├── package.json │ │ ├── requests.py │ │ ├── requirements.txt │ │ ├── static │ │ ├── API.jsx │ │ ├── actions │ │ │ ├── SActions.jsx │ │ │ └── Tactions.jsx │ │ ├── build │ │ │ ├── bundle.js │ │ │ └── bundle.js.map │ │ ├── components │ │ │ ├── Tweet.jsx │ │ │ ├── TweetList.jsx │ │ │ └── templatetweet.jsx │ │ ├── constants.jsx │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── dispatcher.jsx │ │ ├── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── jquery.js │ │ ├── main.jsx │ │ ├── stores │ │ │ └── TStore.jsx │ │ └── style.css │ │ ├── templates │ │ ├── index.html │ │ ├── layout.html │ │ ├── login.html │ │ ├── profile.html │ │ └── signup.html │ │ └── webpack.config.js └── mongodb │ └── Dockerfile ├── Chapter11 ├── README.md ├── cloudformation │ ├── main.yml │ └── vpc.template └── terraform-app │ ├── main.tf │ ├── terraform.tfstate │ └── variables.tf ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter01/README.md -------------------------------------------------------------------------------- /Chapter01/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter01/hello.py -------------------------------------------------------------------------------- /Chapter01/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /Chapter02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter02/README.md -------------------------------------------------------------------------------- /Chapter02/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter02/app.py -------------------------------------------------------------------------------- /Chapter02/flask_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter02/flask_test.py -------------------------------------------------------------------------------- /Chapter02/mydb.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter02/mydb.db -------------------------------------------------------------------------------- /Chapter02/requirements.txt: -------------------------------------------------------------------------------- 1 | flask==2.3.2 2 | nose 3 | -------------------------------------------------------------------------------- /Chapter03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter03/README.md -------------------------------------------------------------------------------- /Chapter03/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter03/app.py -------------------------------------------------------------------------------- /Chapter03/flask_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter03/flask_test.py -------------------------------------------------------------------------------- /Chapter03/mydb.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter03/mydb.db -------------------------------------------------------------------------------- /Chapter03/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter03/requirements.txt -------------------------------------------------------------------------------- /Chapter03/static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter03/static/app.js -------------------------------------------------------------------------------- /Chapter03/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter03/static/style.css -------------------------------------------------------------------------------- /Chapter03/static/tweet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter03/static/tweet.js -------------------------------------------------------------------------------- /Chapter03/templates/addname.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter03/templates/addname.html -------------------------------------------------------------------------------- /Chapter03/templates/addtweets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter03/templates/addtweets.html -------------------------------------------------------------------------------- /Chapter03/templates/adduser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter03/templates/adduser.html -------------------------------------------------------------------------------- /Chapter03/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter03/templates/main.html -------------------------------------------------------------------------------- /Chapter04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter04/README.md -------------------------------------------------------------------------------- /Chapter04/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter04/app.py -------------------------------------------------------------------------------- /Chapter04/flask_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter04/flask_test.py -------------------------------------------------------------------------------- /Chapter04/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter04/requirements.txt -------------------------------------------------------------------------------- /Chapter04/static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter04/static/app.js -------------------------------------------------------------------------------- /Chapter04/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter04/static/style.css -------------------------------------------------------------------------------- /Chapter04/static/tweet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter04/static/tweet.js -------------------------------------------------------------------------------- /Chapter04/templates/addname.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter04/templates/addname.html -------------------------------------------------------------------------------- /Chapter04/templates/addtweets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter04/templates/addtweets.html -------------------------------------------------------------------------------- /Chapter04/templates/adduser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter04/templates/adduser.html -------------------------------------------------------------------------------- /Chapter04/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter04/templates/main.html -------------------------------------------------------------------------------- /Chapter05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/README.md -------------------------------------------------------------------------------- /Chapter05/__pycache__/requests.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/__pycache__/requests.cpython-34.pyc -------------------------------------------------------------------------------- /Chapter05/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/app.py -------------------------------------------------------------------------------- /Chapter05/node_modules/.bin/r.js: -------------------------------------------------------------------------------- 1 | ../requirejs/bin/r.js -------------------------------------------------------------------------------- /Chapter05/node_modules/.bin/r_js: -------------------------------------------------------------------------------- 1 | ../requirejs/bin/r.js -------------------------------------------------------------------------------- /Chapter05/node_modules/requirejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/node_modules/requirejs/README.md -------------------------------------------------------------------------------- /Chapter05/node_modules/requirejs/bin/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/node_modules/requirejs/bin/r.js -------------------------------------------------------------------------------- /Chapter05/node_modules/requirejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/node_modules/requirejs/package.json -------------------------------------------------------------------------------- /Chapter05/node_modules/requirejs/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/node_modules/requirejs/require.js -------------------------------------------------------------------------------- /Chapter05/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/package.json -------------------------------------------------------------------------------- /Chapter05/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/requests.py -------------------------------------------------------------------------------- /Chapter05/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/requirements.txt -------------------------------------------------------------------------------- /Chapter05/static/build/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/static/build/bundle.js -------------------------------------------------------------------------------- /Chapter05/static/build/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/static/build/bundle.js.map -------------------------------------------------------------------------------- /Chapter05/static/components/Tweet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/static/components/Tweet.js -------------------------------------------------------------------------------- /Chapter05/static/components/TweetList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/static/components/TweetList.js -------------------------------------------------------------------------------- /Chapter05/static/components/templatetweet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/static/components/templatetweet.js -------------------------------------------------------------------------------- /Chapter05/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/static/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter05/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter05/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/static/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter05/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter05/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/static/js/jquery.js -------------------------------------------------------------------------------- /Chapter05/static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/static/main.js -------------------------------------------------------------------------------- /Chapter05/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/static/style.css -------------------------------------------------------------------------------- /Chapter05/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/templates/index.html -------------------------------------------------------------------------------- /Chapter05/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/templates/layout.html -------------------------------------------------------------------------------- /Chapter05/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/templates/login.html -------------------------------------------------------------------------------- /Chapter05/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/templates/profile.html -------------------------------------------------------------------------------- /Chapter05/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/templates/signup.html -------------------------------------------------------------------------------- /Chapter05/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter05/webpack.config.js -------------------------------------------------------------------------------- /Chapter06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/README.md -------------------------------------------------------------------------------- /Chapter06/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/app.py -------------------------------------------------------------------------------- /Chapter06/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/package.json -------------------------------------------------------------------------------- /Chapter06/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/requests.py -------------------------------------------------------------------------------- /Chapter06/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/requirements.txt -------------------------------------------------------------------------------- /Chapter06/static/API.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/API.jsx -------------------------------------------------------------------------------- /Chapter06/static/actions/SActions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/actions/SActions.jsx -------------------------------------------------------------------------------- /Chapter06/static/actions/Tactions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/actions/Tactions.jsx -------------------------------------------------------------------------------- /Chapter06/static/build/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/build/bundle.js -------------------------------------------------------------------------------- /Chapter06/static/build/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/build/bundle.js.map -------------------------------------------------------------------------------- /Chapter06/static/components/Tweet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/components/Tweet.jsx -------------------------------------------------------------------------------- /Chapter06/static/components/TweetList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/components/TweetList.jsx -------------------------------------------------------------------------------- /Chapter06/static/components/templatetweet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/components/templatetweet.jsx -------------------------------------------------------------------------------- /Chapter06/static/constants.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/constants.jsx -------------------------------------------------------------------------------- /Chapter06/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter06/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter06/static/dispatcher.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/dispatcher.jsx -------------------------------------------------------------------------------- /Chapter06/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter06/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter06/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/js/jquery.js -------------------------------------------------------------------------------- /Chapter06/static/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/main.jsx -------------------------------------------------------------------------------- /Chapter06/static/stores/TStore.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/stores/TStore.jsx -------------------------------------------------------------------------------- /Chapter06/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/static/style.css -------------------------------------------------------------------------------- /Chapter06/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/templates/index.html -------------------------------------------------------------------------------- /Chapter06/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/templates/layout.html -------------------------------------------------------------------------------- /Chapter06/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/templates/login.html -------------------------------------------------------------------------------- /Chapter06/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/templates/profile.html -------------------------------------------------------------------------------- /Chapter06/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/templates/signup.html -------------------------------------------------------------------------------- /Chapter06/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter06/webpack.config.js -------------------------------------------------------------------------------- /Chapter07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/README.md -------------------------------------------------------------------------------- /Chapter07/__pycache__/models.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/__pycache__/models.cpython-34.pyc -------------------------------------------------------------------------------- /Chapter07/__pycache__/requests.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/__pycache__/requests.cpython-34.pyc -------------------------------------------------------------------------------- /Chapter07/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/app.py -------------------------------------------------------------------------------- /Chapter07/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/build.js -------------------------------------------------------------------------------- /Chapter07/eventsourcing/aggregate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/eventsourcing/aggregate.py -------------------------------------------------------------------------------- /Chapter07/eventsourcing/command_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/eventsourcing/command_handler.py -------------------------------------------------------------------------------- /Chapter07/eventsourcing/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/eventsourcing/commands.py -------------------------------------------------------------------------------- /Chapter07/eventsourcing/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/eventsourcing/errors.py -------------------------------------------------------------------------------- /Chapter07/eventsourcing/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/eventsourcing/events.py -------------------------------------------------------------------------------- /Chapter07/eventsourcing/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/eventsourcing/main.py -------------------------------------------------------------------------------- /Chapter07/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/package.json -------------------------------------------------------------------------------- /Chapter07/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/requests.py -------------------------------------------------------------------------------- /Chapter07/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/requirements.txt -------------------------------------------------------------------------------- /Chapter07/static/API.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/API.jsx -------------------------------------------------------------------------------- /Chapter07/static/actions/SActions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/actions/SActions.jsx -------------------------------------------------------------------------------- /Chapter07/static/actions/Tactions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/actions/Tactions.jsx -------------------------------------------------------------------------------- /Chapter07/static/build/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/build/bundle.js -------------------------------------------------------------------------------- /Chapter07/static/build/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/build/bundle.js.map -------------------------------------------------------------------------------- /Chapter07/static/components/Tweet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/components/Tweet.jsx -------------------------------------------------------------------------------- /Chapter07/static/components/TweetList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/components/TweetList.jsx -------------------------------------------------------------------------------- /Chapter07/static/components/templatetweet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/components/templatetweet.jsx -------------------------------------------------------------------------------- /Chapter07/static/constants.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/constants.jsx -------------------------------------------------------------------------------- /Chapter07/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter07/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter07/static/dispatcher.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/dispatcher.jsx -------------------------------------------------------------------------------- /Chapter07/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter07/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter07/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/js/jquery.js -------------------------------------------------------------------------------- /Chapter07/static/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/main.jsx -------------------------------------------------------------------------------- /Chapter07/static/stores/TStore.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/stores/TStore.jsx -------------------------------------------------------------------------------- /Chapter07/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/static/style.css -------------------------------------------------------------------------------- /Chapter07/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/templates/index.html -------------------------------------------------------------------------------- /Chapter07/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/templates/layout.html -------------------------------------------------------------------------------- /Chapter07/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/templates/login.html -------------------------------------------------------------------------------- /Chapter07/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/templates/profile.html -------------------------------------------------------------------------------- /Chapter07/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/templates/signup.html -------------------------------------------------------------------------------- /Chapter07/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter07/webpack.config.js -------------------------------------------------------------------------------- /Chapter08/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/README.md -------------------------------------------------------------------------------- /Chapter08/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/app.py -------------------------------------------------------------------------------- /Chapter08/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/build.js -------------------------------------------------------------------------------- /Chapter08/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/package.json -------------------------------------------------------------------------------- /Chapter08/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/request.py -------------------------------------------------------------------------------- /Chapter08/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/requirements.txt -------------------------------------------------------------------------------- /Chapter08/static/API.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/API.jsx -------------------------------------------------------------------------------- /Chapter08/static/actions/SActions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/actions/SActions.jsx -------------------------------------------------------------------------------- /Chapter08/static/actions/Tactions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/actions/Tactions.jsx -------------------------------------------------------------------------------- /Chapter08/static/build/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/build/bundle.js -------------------------------------------------------------------------------- /Chapter08/static/build/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/build/bundle.js.map -------------------------------------------------------------------------------- /Chapter08/static/components/Tweet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/components/Tweet.jsx -------------------------------------------------------------------------------- /Chapter08/static/components/TweetList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/components/TweetList.jsx -------------------------------------------------------------------------------- /Chapter08/static/components/templatetweet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/components/templatetweet.jsx -------------------------------------------------------------------------------- /Chapter08/static/constants.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/constants.jsx -------------------------------------------------------------------------------- /Chapter08/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter08/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter08/static/dispatcher.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/dispatcher.jsx -------------------------------------------------------------------------------- /Chapter08/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter08/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter08/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/js/jquery.js -------------------------------------------------------------------------------- /Chapter08/static/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/main.jsx -------------------------------------------------------------------------------- /Chapter08/static/stores/TStore.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/stores/TStore.jsx -------------------------------------------------------------------------------- /Chapter08/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/static/style.css -------------------------------------------------------------------------------- /Chapter08/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/templates/index.html -------------------------------------------------------------------------------- /Chapter08/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/templates/layout.html -------------------------------------------------------------------------------- /Chapter08/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/templates/login.html -------------------------------------------------------------------------------- /Chapter08/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/templates/profile.html -------------------------------------------------------------------------------- /Chapter08/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/templates/signup.html -------------------------------------------------------------------------------- /Chapter08/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter08/webpack.config.js -------------------------------------------------------------------------------- /Chapter10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/README.md -------------------------------------------------------------------------------- /Chapter10/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/Dockerfile -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/__pycache__/models.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/__pycache__/models.cpython-34.pyc -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/__pycache__/requests.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/__pycache__/requests.cpython-34.pyc -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/app.py -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/build.js -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/package.json -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/requests.py -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/requirements.txt -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/API.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/API.jsx -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/actions/SActions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/actions/SActions.jsx -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/actions/Tactions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/actions/Tactions.jsx -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/build/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/build/bundle.js -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/build/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/build/bundle.js.map -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/components/Tweet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/components/Tweet.jsx -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/components/TweetList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/components/TweetList.jsx -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/components/templatetweet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/components/templatetweet.jsx -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/constants.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/constants.jsx -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/dispatcher.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/dispatcher.jsx -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/js/jquery.js -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/main.jsx -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/stores/TStore.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/stores/TStore.jsx -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/static/style.css -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/templates/index.html -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/templates/layout.html -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/templates/login.html -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/templates/profile.html -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/templates/signup.html -------------------------------------------------------------------------------- /Chapter10/app/cloud-native-app/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/app/cloud-native-app/webpack.config.js -------------------------------------------------------------------------------- /Chapter10/mongodb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter10/mongodb/Dockerfile -------------------------------------------------------------------------------- /Chapter11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter11/README.md -------------------------------------------------------------------------------- /Chapter11/cloudformation/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter11/cloudformation/main.yml -------------------------------------------------------------------------------- /Chapter11/cloudformation/vpc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter11/cloudformation/vpc.template -------------------------------------------------------------------------------- /Chapter11/terraform-app/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter11/terraform-app/main.tf -------------------------------------------------------------------------------- /Chapter11/terraform-app/terraform.tfstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter11/terraform-app/terraform.tfstate -------------------------------------------------------------------------------- /Chapter11/terraform-app/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/Chapter11/terraform-app/variables.tf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cloud-Native-Python/HEAD/README.md --------------------------------------------------------------------------------