Skip to content

Commit 6fdf24d

Browse files
authored
Merge pull request #1 from nawinto99/dev
Dev
2 parents 0d85f40 + 81f6964 commit 6fdf24d

File tree

17 files changed

+1413
-3
lines changed

17 files changed

+1413
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ celerybeat.pid
102102
*.sage.py
103103

104104
# Environments
105-
.env
106105
.venv
107106
env/
108107
venv/
@@ -127,3 +126,5 @@ dmypy.json
127126

128127
# Pyre type checker
129128
.pyre/
129+
130+
.DS_Store

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# modelt
2-
Modelt is a modern data integration solution that connects data to data for advanced analytics.
1+
# Modelt
2+
Modelt :speaking_head: (mow·delt) is a modern data integration solution that connects data to data for advanced analytics.

docs/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
### **Modelt**
2+
3+
Modelt (mow·delt) is a modern data integration solution that connects data to data for advanced analytics.

docs/public/modelt.mp3

5.39 KB
Binary file not shown.

mkdocs.yml

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
# Project information
2+
site_name: Modelt
3+
site_url: https://nawinto99.github.io/modelt/
4+
site_author: Naveen Thurimerla
5+
site_description: Modelt (mow·delt) is a modern data integration solution that connects data to data for advanced analytics.
6+
7+
# Repository
8+
repo_name: nawinto99/modelt
9+
repo_url: https://github.com/nawinto99/modelt
10+
edit_uri: ""
11+
12+
# Copyright
13+
copyright: Copyright © 2021 Naveen Thurimerla
14+
15+
# Configuration
16+
theme:
17+
name: "material"
18+
logo: assets/favicon.png
19+
20+
# Static files
21+
static_templates:
22+
- 404.html
23+
24+
# Don't include MkDocs' JavaScript
25+
include_search_page: false
26+
search_index_only: true
27+
28+
# Default values, taken from mkdocs_theme.yml
29+
language: en
30+
features:
31+
- content.tabs.link
32+
# - navigation.instant
33+
- navigation.sections
34+
- navigation.tabs
35+
- navigation.tracking
36+
- search.highlight
37+
- search.share
38+
- search.suggest
39+
palette:
40+
- scheme: default
41+
primary: indigo
42+
accent: amber
43+
toggle:
44+
icon: material/weather-night
45+
name: Switch to dark mode
46+
- scheme: slate
47+
primary: orange
48+
accent: blue
49+
toggle:
50+
icon: material/weather-sunny
51+
name: Switch to light mode
52+
font:
53+
text: Roboto
54+
code: Roboto Mono
55+
favicon: assets/favicon.png
56+
icon:
57+
logo: logo
58+
59+
# Plugins
60+
plugins:
61+
- include-markdown
62+
- search
63+
64+
# Customization
65+
extra:
66+
generator: false
67+
analytics:
68+
provider: google
69+
property: G-SBZJQQQ1LW
70+
social:
71+
- icon: fontawesome/brands/github
72+
link: https://github.com/nawinto99
73+
- icon: fontawesome/brands/docker
74+
link: https://hub.docker.com/r/nawinto99/egit/
75+
- icon: fontawesome/brands/twitter
76+
link: https://twitter.com/nawinto99
77+
78+
# Extensions
79+
markdown_extensions:
80+
- admonition
81+
- abbr
82+
- attr_list
83+
- def_list
84+
- footnotes
85+
- meta
86+
- md_in_html
87+
- toc:
88+
permalink: true
89+
- pymdownx.arithmatex:
90+
generic: true
91+
- pymdownx.betterem:
92+
smart_enable: all
93+
- pymdownx.caret
94+
- pymdownx.critic
95+
- pymdownx.details
96+
- pymdownx.highlight
97+
- pymdownx.inlinehilite
98+
- pymdownx.keys
99+
- pymdownx.magiclink:
100+
repo_url_shorthand: true
101+
user: squidfunk
102+
repo: mkdocs-material
103+
- pymdownx.mark
104+
- pymdownx.smartsymbols
105+
- pymdownx.tabbed
106+
- pymdownx.tasklist:
107+
custom_checkbox: true
108+
- pymdownx.tilde
109+
- pymdownx.emoji:
110+
emoji_index: !!python/name:materialx.emoji.twemoji
111+
emoji_generator: !!python/name:materialx.emoji.to_svg # Page tree
112+
113+
nav:
114+
- Home: index.md
115+

0 commit comments

Comments
 (0)