-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackages.py
More file actions
35 lines (30 loc) · 1.09 KB
/
packages.py
File metadata and controls
35 lines (30 loc) · 1.09 KB
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
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Old "un-decentralized" style of locating all package definitions, for all packages for all backend repos
in one monolithic dictionary inside the civic-sandbox's lambda_function endpoint. This has been replaced
by the new decentralized style of locating package defitions for each backend repo in the respective
backend repo's 'sandbox/package_info/' endpoint. While the lamda_function's location is still at the
same place, it now fetches each backend repo's package definitions from the backend repo's
'sandbox/package_info/' endpoint in a transparent manner.
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"""
Package Definitions
"""
packages = {
}
"""
Slides:
Used in formulating the package definitions
"""
slides = {
}
"""
Foundations:
Used in formulating the package definitions
"""
foundations = {
}
package_info = {
'packages' : packages,
'slides' : slides,
'foundations' : foundations
}