Skip to content

Commit 190c3ab

Browse files
committed
Initial commit
0 parents  commit 190c3ab

277 files changed

Lines changed: 11911 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 223 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,223 @@
1+
# Custom
2+
*.duckdb
3+
ui_catalog.db
4+
site/
5+
addons/
6+
collectors/
7+
notebooks
8+
output
9+
logs
10+
dbt_packages
11+
.vscode
12+
.idea
13+
*.pem
14+
source
15+
16+
# Byte-compiled / optimized / DLL files
17+
__pycache__/
18+
*.py[codz]
19+
*$py.class
20+
.dlt
21+
# C extensions
22+
*.so
23+
24+
25+
# Distribution / packaging
26+
.Python
27+
build/
28+
develop-eggs/
29+
dist/
30+
downloads/
31+
eggs/
32+
.eggs/
33+
lib/
34+
lib64/
35+
parts/
36+
sdist/
37+
var/
38+
wheels/
39+
share/python-wheels/
40+
*.egg-info/
41+
.installed.cfg
42+
*.egg
43+
MANIFEST
44+
45+
# PyInstaller
46+
# Usually these files are written by a python script from a template
47+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
48+
*.manifest
49+
*.spec
50+
51+
# Installer logs
52+
pip-log.txt
53+
pip-delete-this-directory.txt
54+
55+
# Unit test / coverage reports
56+
htmlcov/
57+
.tox/
58+
.nox/
59+
.coverage
60+
.coverage.*
61+
.cache
62+
nosetests.xml
63+
coverage.xml
64+
*.cover
65+
*.py.cover
66+
.hypothesis/
67+
.pytest_cache/
68+
cover/
69+
70+
# Translations
71+
*.mo
72+
*.pot
73+
74+
# Django stuff:
75+
*.log
76+
local_settings.py
77+
db.sqlite3
78+
db.sqlite3-journal
79+
80+
# Flask stuff:
81+
instance/
82+
.webassets-cache
83+
84+
# Scrapy stuff:
85+
.scrapy
86+
87+
# Sphinx documentation
88+
docs/_build/
89+
90+
# PyBuilder
91+
.pybuilder/
92+
target/
93+
94+
# Jupyter Notebook
95+
.ipynb_checkpoints
96+
97+
# IPython
98+
profile_default/
99+
ipython_config.py
100+
101+
# pyenv
102+
# For a library or package, you might want to ignore these files since the code is
103+
# intended to run in multiple environments; otherwise, check them in:
104+
# .python-version
105+
106+
# pipenv
107+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
108+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
109+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
110+
# install all needed dependencies.
111+
#Pipfile.lock
112+
113+
# UV
114+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
115+
# This is especially recommended for binary packages to ensure reproducibility, and is more
116+
# commonly ignored for libraries.
117+
#uv.lock
118+
119+
# poetry
120+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
121+
# This is especially recommended for binary packages to ensure reproducibility, and is more
122+
# commonly ignored for libraries.
123+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
124+
#poetry.lock
125+
#poetry.toml
126+
127+
# pdm
128+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
129+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
130+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
131+
#pdm.lock
132+
#pdm.toml
133+
.pdm-python
134+
.pdm-build/
135+
136+
# pixi
137+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
138+
#pixi.lock
139+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
140+
# in the .venv directory. It is recommended not to include this directory in version control.
141+
.pixi
142+
143+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
144+
__pypackages__/
145+
146+
# Celery stuff
147+
celerybeat-schedule
148+
celerybeat.pid
149+
150+
# SageMath parsed files
151+
*.sage.py
152+
153+
# Environments
154+
.env
155+
.envrc
156+
.venv
157+
env/
158+
venv/
159+
ENV/
160+
env.bak/
161+
venv.bak/
162+
163+
# Spyder project settings
164+
.spyderproject
165+
.spyproject
166+
167+
# Rope project settings
168+
.ropeproject
169+
170+
# mkdocs documentation
171+
/site
172+
173+
# mypy
174+
.mypy_cache/
175+
.dmypy.json
176+
dmypy.json
177+
178+
# Pyre type checker
179+
.pyre/
180+
181+
# pytype static type analyzer
182+
.pytype/
183+
184+
# Cython debug symbols
185+
cython_debug/
186+
187+
# PyCharm
188+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
189+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
190+
# and can be added to the global gitignore or merged into this file. For a more nuclear
191+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
192+
.idea/
193+
194+
# Abstra
195+
# Abstra is an AI-powered process automation framework.
196+
# Ignore directories containing user credentials, local state, and settings.
197+
# Learn more at https://abstra.io/docs
198+
.abstra/
199+
200+
# Visual Studio Code
201+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
202+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
203+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
204+
# you could uncomment the following to ignore the entire vscode folder
205+
# .vscode/
206+
207+
# Ruff stuff:
208+
.ruff_cache/
209+
210+
# PyPI configuration file
211+
.pypirc
212+
213+
# Cursor
214+
# Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
215+
# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
216+
# refer to https://docs.cursor.com/context/ignore-files
217+
.cursorignore
218+
.cursorindexingignore
219+
220+
# Marimo
221+
marimo/_static/
222+
marimo/_lsp/
223+
__marimo__/

.pre-commit-config.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v6.0.0
4+
hooks:
5+
- id: check-yaml
6+
exclude: mkdocs.yml
7+
- id: check-json
8+
- id: end-of-file-fixer
9+
exclude: ^scripts/templates/
10+
- id: trailing-whitespace
11+
exclude: ^scripts/templates/
12+
- id: check-added-large-files
13+
exclude: ^docs/images/
14+
- repo: https://github.com/astral-sh/ruff-pre-commit
15+
rev: v0.15.4
16+
hooks:
17+
- id: ruff-check
18+
args: [ --fix ]
19+
- id: ruff-format

0 commit comments

Comments
 (0)