Skip to content

Commit f3e8106

Browse files
authored
Merge pull request #23 from Finoptimize/container
Adding Docker
2 parents 9bf723d + 8056a8d commit f3e8106

File tree

14 files changed

+1809
-6
lines changed

14 files changed

+1809
-6
lines changed

.dockerignore

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# Git files
2+
.git
3+
.gitignore
4+
.gitattributes
5+
6+
# Documentation
7+
*.md
8+
docs/
9+
LICENSE
10+
11+
# Docker files (avoid recursion)
12+
Dockerfile*
13+
docker-compose*.yml
14+
.dockerignore
15+
16+
# Development files
17+
.vscode/
18+
.idea/
19+
*.swp
20+
*.swo
21+
*~
22+
23+
# Build artifacts
24+
bin/
25+
dist/
26+
build/
27+
*.exe
28+
*.dll
29+
*.so
30+
*.dylib
31+
32+
# Test files
33+
*_test.go
34+
testdata/
35+
coverage.*
36+
*.out
37+
38+
# Temporary files
39+
tmp/
40+
temp/
41+
*.tmp
42+
43+
# OS files
44+
.DS_Store
45+
Thumbs.db
46+
desktop.ini
47+
48+
# IDE files
49+
*.iml
50+
.project
51+
.classpath
52+
.settings/
53+
54+
# Logs
55+
*.log
56+
logs/
57+
58+
# Environment files
59+
.env
60+
.env.local
61+
.env.*.local
62+
63+
# Node modules (if any)
64+
node_modules/
65+
66+
# Go specific
67+
vendor/
68+
go.work
69+
go.work.sum
70+
71+
# Screenshots and media
72+
docs/screenshots/
73+
*.png
74+
*.jpg
75+
*.gif
76+
*.mp4
77+
78+
# CI/CD
79+
.github/
80+
.gitlab-ci.yml
81+
.travis.yml

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,5 @@ examples/observability
3939
PROJECT.md
4040
agentaflow-sro-community.code-workspace
4141
docs/screenshots/README.md
42+
docker/PHASE1-COMPLETE.md
43+
docs/DOCUMENTATION-UPDATE-SUMMARY.md

0 commit comments

Comments
 (0)