Skip to content

Commit c28eb13

Browse files
committed
ci: added vibed cicd
1 parent 95b74e2 commit c28eb13

18 files changed

Lines changed: 4900 additions & 1 deletion

.dockerignore

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
# Git
2+
.git
3+
.gitignore
4+
.gitattributes
5+
6+
# GitHub
7+
.github
8+
9+
# Python
10+
__pycache__
11+
*.py[cod]
12+
*$py.class
13+
*.so
14+
.Python
15+
build/
16+
develop-eggs/
17+
dist/
18+
downloads/
19+
eggs/
20+
.eggs/
21+
lib/
22+
lib64/
23+
parts/
24+
sdist/
25+
var/
26+
wheels/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
MANIFEST
31+
32+
# Virtual environments
33+
.venv
34+
venv/
35+
ENV/
36+
env/
37+
38+
# IDEs
39+
.vscode/
40+
.idea/
41+
*.swp
42+
*.swo
43+
*~
44+
.DS_Store
45+
46+
# Testing
47+
.pytest_cache/
48+
.coverage
49+
.coverage.*
50+
htmlcov/
51+
.tox/
52+
.nox/
53+
coverage.xml
54+
*.cover
55+
.hypothesis/
56+
.mypy_cache/
57+
.dmypy.json
58+
dmypy.json
59+
60+
# Linting and formatting
61+
.ruff_cache/
62+
.ruff/
63+
.pre-commit-config.yaml
64+
65+
# Documentation
66+
docs/
67+
*.md
68+
README.md
69+
LICENSE
70+
71+
# CI/CD
72+
.gitlab-ci.yml
73+
azure-pipelines.yml
74+
Jenkinsfile
75+
76+
# Docker
77+
Dockerfile
78+
docker-compose*.yml
79+
.dockerignore
80+
81+
# Logs
82+
*.log
83+
logs/
84+
85+
# Database
86+
*.db
87+
*.sqlite
88+
*.sqlite3
89+
90+
# Environment variables
91+
.env
92+
.env.*
93+
!.env.example
94+
95+
# OS
96+
Thumbs.db
97+
98+
# Temporary files
99+
tmp/
100+
temp/
101+
*.tmp
102+
103+
# Node (if applicable)
104+
node_modules/
105+
npm-debug.log
106+
yarn-error.log
107+
108+
# Alembic (keep only necessary files)
109+
alembic.ini
110+
111+
# UV/pip
112+
uv.lock
113+
poetry.lock
114+
Pipfile.lock
115+
requirements*.txt

0 commit comments

Comments
 (0)