-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
105 lines (98 loc) · 3.19 KB
/
mkdocs.yml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
site_name: Analytics Data Where House Docs
theme:
name: material
custom_dir: docs/overrides
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-3
name: Switch to light mode
font:
text: Roboto
features:
- content.code.annotate
- content.code.copy
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- search.highlight
repo_url: https://github.com/MattTriano/analytics_data_where_house
repo_name: MattTriano/analytics_data_where_house
nav:
- Home: index.md
- Setup:
- "Overview": setup/index.md
- 'Getting Started': setup/getting_started.md
- 'Configure Superset': setup/superset_setup.md
- 'Configure pgAdmin4': setup/pgAdmin4.md
- "User's Guide":
- user_guide/index.md
- "Starting up the System": user_guide/system_startup.md
- "Running a Pipeline": user_guide/running_a_pipeline.md
- "Visualization and EDA":
- user_guide/visualization/index.md
- "Making Charts": user_guide/visualization/visualization.md
- "Accessing Systems": user_guide/accessing_resources.md
- "Developer's Guide":
- dev_guide/index.md
- "Adding a Socrata Pipeline": dev_guide/adding_a_socrata_pipeline.md
- "Standardizing Columns": dev_guide/standardizing_columns.md
- "Validating Data":
- dev_guide/validation/index.md
- "Sample Workflow": dev_guide/validation/new_workflow.md
# - "Defining a Datasource": dev_guide/validation/data_source_setup.md
# - "Setting (data) Expectations":
# - "Manual Workflow": dev_guide/validation/manually_setting_expectations.md
# - "Data Assistant Workflow": dev_guide/validation/data_assistant_workflow.md
# - "Setting Checkpoints": dev_guide/making_expectation_suites.md
- "Engineering Features":
- dev_guide/feature_engineering/index.md
- "Geospatial Features": dev_guide/feature_engineering/geospatial.md
- "Time Series Features": dev_guide/feature_engineering/time_series.md
- "Data Sources":
- 'Socrata ELT': data_sources/socrata.md
# - "Overview":
# - "Workflow Patterns": overview/pipeline_patterns.md
plugins:
- search
- glightbox
markdown_extensions:
- toc:
permalink: true
separator: "_"
toc_depth: 4
title: On this page
- admonition
- attr_list
- md_in_html
- def_list
- footnotes
- pymdownx.details
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- tables
extra_css:
- stylesheets/extra.css