forked from cosmicpython/book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchapters.py
40 lines (37 loc) · 913 Bytes
/
chapters.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
CHAPTERS = [
'chapter_01_domain_model',
'chapter_02_repository',
"chapter_04_service_layer",
"appendix_project_structure",
'appendix_django',
"chapter_05_uow",
"appendix_csvs",
"chapter_06_aggregate",
"chapter_07_events_and_message_bus",
"chapter_08_all_messagebus",
"chapter_09_commands",
"chapter_10_external_events",
"chapter_11_cqrs",
"chapter_12_dependency_injection",
"appendix_bootstrap",
]
BRANCHES = {
'appendix_csvs',
'appendix_django',
'appendix_bootstrap',
}
STANDALONE = [
'chapter_03_abstractions',
]
NO_EXERCISE = [
"appendix_project_structure",
'appendix_django',
"appendix_csvs",
"chapter_07_events_and_message_bus",
"chapter_08_all_messagebus",
"chapter_09_commands",
"chapter_10_external_events",
"chapter_11_cqrs",
"chapter_12_dependency_injection",
"appendix_bootstrap",
]