forked from mlrun/mlrun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
102 lines (83 loc) · 2.06 KB
/
.gitignore
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
# Byte-compiled / optimized / DLL files
*.py[cod]
__pycache__/
# Python virtual environments and environment files
*venv*
.python-version
# Jupyter Notebook checkpoints
.ipynb_checkpoints/
# Testing and coverage files
# pytest cache and Hypothesis directories
.pytest_cache/
.hypothesis/
# Test results and temporary test files
tests/test_results/
tests/temp*
tests/*.pkl
tests/project.yaml
tests/system/env.yml
# Coverage reports
*.coverage
# Editors and operating system files
# Visual Studio Code settings
.vscode/
# PyCharm settings
.idea/
# macOS Finder metadata
.DS_Store
# Secrets and credentials
# AWS credentials and other secret files
.aws-secrets
credentials.txt
credentials.json
google-big-query-credentials.json
kubeconfig
# Build artifacts and generated files
# Build directories and files
.bin
build/
dist/
mlrun.egg-info/
mlrun/utils/version/version.json
Dockerfile.mlrun-test-nb
**/Dockerfile.dockerignore
# Dask worker spaces
dask-worker-space/
# Charts and related files
chart/
chart.html
# Dataset and model files
dataset.csv
model.txt
iteration_results.csv
# Result HTML files
result*.html
# OpenAPI specification check files
mlrun_bc_*.json
# Documentation build artifacts
# Built documentation and generated files
docs/_build/
docs/api/**/generated_rsts/
docs/api/generated_rsts/
docs/external/*.html
docs/external/*.md
docs/contributing.md
# Local development and configuration files
# Project configuration and environment files
project.yaml
automation/patch_igz/patch[_-]env.yml
# Local playground dir
playground
# Note:
# The files under 'hack/*.env' are used for local development.
# For example, when developing for the MLRun API, you may use these env files to preset environment variables.
# Then, when running the API, feed it with "MLRUN_DEFAULT_ENV_FILE=<absolute-path-to-this-file>"
hack/*.env
# Database and protobuf files
server/py/services/api/db/mlrun.db
server/py/services/api/proto/*pb2*.py
# Temporary or backup files
*.bak
# <= 1.7.x legacy project structure
# on >= 1.8.0, server/api has been moved to server/py/services/api
server/api