Skip to content

Commit eca1e73

Browse files
committed
feat: add Docker and AWS deployment configuration files
- Introduced Docker-related files including Dockerfile, docker-compose.yml, and .dockerignore to facilitate containerized deployment of the BYOVA Gateway. - Added AWS deployment configuration files such as task-definition.json and IAM policies to streamline the deployment process on AWS ECS. - Created comprehensive documentation for Docker production deployment and AWS deployment guides to assist users in setting up and managing the BYOVA Gateway effectively. - This update aims to enhance the deployment experience for developers and users by providing clear instructions and necessary configuration files.
1 parent cdadadb commit eca1e73

17 files changed

+3028
-3
lines changed

.dockerignore

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
23+
# Virtual environments
24+
venv/
25+
env/
26+
ENV/
27+
28+
# IDE
29+
.vscode/
30+
.idea/
31+
*.swp
32+
*.swo
33+
34+
# OS
35+
.DS_Store
36+
Thumbs.db
37+
38+
# Git
39+
.git/
40+
.gitignore
41+
42+
# Documentation
43+
docs/_site/
44+
*.md
45+
46+
# Logs
47+
logs/
48+
*.log
49+
50+
# Test files
51+
tests/
52+
test_*/
53+
pytest.ini
54+
55+
# Development files
56+
.pytest_cache/
57+
.coverage
58+
htmlcov/
59+
60+
# Docker
61+
Dockerfile*
62+
docker-compose*
63+
.dockerignore
64+
65+
# AWS
66+
.aws/
67+
68+
# Audio recordings (if large)
69+
audio_recordings/
70+
test_recordings/
71+
test_audio_recordings/
72+
73+
# Jupyter notebooks
74+
*.ipynb
75+
76+
# Temporary files
77+
*.tmp
78+
*.temp
79+
80+
# Backup files
81+
*.bak
82+
*.backup
83+
84+
85+
86+
87+

0 commit comments

Comments
 (0)