├── .gitignore ├── Makefile ├── README.md ├── mongobasket ├── __init__.py ├── baskets.py └── cli.py ├── requirements.txt ├── setup.py ├── slides ├── content.md ├── images │ ├── Castle_Bravo_Blast.jpg │ ├── bank-statement.png │ ├── basket-event-streams.svg │ ├── codecamp-feedback.png │ ├── codecamp-partners.png │ ├── eventsourcing-cycle.svg │ ├── get-out.jpg │ ├── just-say-no.jpg │ └── money-40603_1280.png ├── index.html ├── js │ ├── jquery-3.3.1.min.js │ ├── remark-latest.min.js │ └── terminal.language.js └── theme.css └── tests └── test_basket.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/README.md -------------------------------------------------------------------------------- /mongobasket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mongobasket/baskets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/mongobasket/baskets.py -------------------------------------------------------------------------------- /mongobasket/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/mongobasket/cli.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/setup.py -------------------------------------------------------------------------------- /slides/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/slides/content.md -------------------------------------------------------------------------------- /slides/images/Castle_Bravo_Blast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/slides/images/Castle_Bravo_Blast.jpg -------------------------------------------------------------------------------- /slides/images/bank-statement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/slides/images/bank-statement.png -------------------------------------------------------------------------------- /slides/images/basket-event-streams.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/slides/images/basket-event-streams.svg -------------------------------------------------------------------------------- /slides/images/codecamp-feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/slides/images/codecamp-feedback.png -------------------------------------------------------------------------------- /slides/images/codecamp-partners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/slides/images/codecamp-partners.png -------------------------------------------------------------------------------- /slides/images/eventsourcing-cycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/slides/images/eventsourcing-cycle.svg -------------------------------------------------------------------------------- /slides/images/get-out.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/slides/images/get-out.jpg -------------------------------------------------------------------------------- /slides/images/just-say-no.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/slides/images/just-say-no.jpg -------------------------------------------------------------------------------- /slides/images/money-40603_1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/slides/images/money-40603_1280.png -------------------------------------------------------------------------------- /slides/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/slides/index.html -------------------------------------------------------------------------------- /slides/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/slides/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /slides/js/remark-latest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/slides/js/remark-latest.min.js -------------------------------------------------------------------------------- /slides/js/terminal.language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/slides/js/terminal.language.js -------------------------------------------------------------------------------- /slides/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/slides/theme.css -------------------------------------------------------------------------------- /tests/test_basket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthemighty/eventsourcing-101/HEAD/tests/test_basket.py --------------------------------------------------------------------------------