port-ocean 0.13.1.dev1__py3-none-any.whl → 0.14.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of port-ocean might be problematic. Click here for more details.
- integrations/_infra/Dockerfile.Deb +56 -0
- integrations/_infra/Dockerfile.alpine +108 -0
- integrations/_infra/Dockerfile.base.builder +26 -0
- integrations/_infra/Dockerfile.base.runner +13 -0
- integrations/_infra/Dockerfile.dockerignore +94 -0
- integrations/_infra/Makefile +89 -0
- integrations/_infra/grpcio.sh +18 -0
- integrations/_infra/init.sh +5 -0
- port_ocean/cli/commands/defaults/clean.py +3 -1
- port_ocean/cli/cookiecutter/hooks/post_gen_project.py +14 -4
- port_ocean/clients/port/utils.py +8 -2
- port_ocean/config/settings.py +1 -0
- port_ocean/core/defaults/clean.py +10 -3
- port_ocean/core/defaults/common.py +24 -8
- port_ocean/core/defaults/initialize.py +3 -1
- port_ocean/helpers/retry.py +31 -20
- port_ocean/ocean.py +1 -1
- port_ocean/tests/core/defaults/test_common.py +166 -0
- port_ocean/tests/utils/test_cache.py +189 -0
- port_ocean/utils/cache.py +37 -1
- {port_ocean-0.13.1.dev1.dist-info → port_ocean-0.14.4.dist-info}/METADATA +1 -1
- {port_ocean-0.13.1.dev1.dist-info → port_ocean-0.14.4.dist-info}/RECORD +25 -17
- port_ocean/cli/cookiecutter/{{cookiecutter.integration_slug}}/.dockerignore +0 -94
- port_ocean/cli/cookiecutter/{{cookiecutter.integration_slug}}/Dockerfile +0 -15
- {port_ocean-0.13.1.dev1.dist-info → port_ocean-0.14.4.dist-info}/LICENSE.md +0 -0
- {port_ocean-0.13.1.dev1.dist-info → port_ocean-0.14.4.dist-info}/WHEEL +0 -0
- {port_ocean-0.13.1.dev1.dist-info → port_ocean-0.14.4.dist-info}/entry_points.txt +0 -0
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
# Git
|
|
2
|
-
.git
|
|
3
|
-
.gitignore
|
|
4
|
-
.gitattributes
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
# CI
|
|
8
|
-
.codeclimate.yml
|
|
9
|
-
.travis.yml
|
|
10
|
-
.taskcluster.yml
|
|
11
|
-
|
|
12
|
-
# Docker
|
|
13
|
-
docker-compose.yml
|
|
14
|
-
Dockerfile
|
|
15
|
-
.docker
|
|
16
|
-
.dockerignore
|
|
17
|
-
|
|
18
|
-
# Byte-compiled / optimized / DLL files
|
|
19
|
-
**/__pycache__/
|
|
20
|
-
**/*.py[cod]
|
|
21
|
-
|
|
22
|
-
# C extensions
|
|
23
|
-
*.so
|
|
24
|
-
|
|
25
|
-
# Distribution / packaging
|
|
26
|
-
.Python
|
|
27
|
-
env/
|
|
28
|
-
build/
|
|
29
|
-
develop-eggs/
|
|
30
|
-
dist/
|
|
31
|
-
downloads/
|
|
32
|
-
eggs/
|
|
33
|
-
lib/
|
|
34
|
-
lib64/
|
|
35
|
-
parts/
|
|
36
|
-
sdist/
|
|
37
|
-
var/
|
|
38
|
-
*.egg-info/
|
|
39
|
-
.installed.cfg
|
|
40
|
-
*.egg
|
|
41
|
-
|
|
42
|
-
# PyInstaller
|
|
43
|
-
# Usually these files are written by a python script from a template
|
|
44
|
-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
45
|
-
*.manifest
|
|
46
|
-
*.spec
|
|
47
|
-
|
|
48
|
-
# Installer logs
|
|
49
|
-
pip-log.txt
|
|
50
|
-
pip-delete-this-directory.txt
|
|
51
|
-
|
|
52
|
-
# Unit test / coverage reports
|
|
53
|
-
htmlcov/
|
|
54
|
-
.tox/
|
|
55
|
-
.coverage
|
|
56
|
-
.cache
|
|
57
|
-
nosetests.xml
|
|
58
|
-
coverage.xml
|
|
59
|
-
|
|
60
|
-
# Translations
|
|
61
|
-
*.mo
|
|
62
|
-
*.pot
|
|
63
|
-
|
|
64
|
-
# Django stuff:
|
|
65
|
-
*.log
|
|
66
|
-
|
|
67
|
-
# Sphinx documentation
|
|
68
|
-
docs/_build/
|
|
69
|
-
|
|
70
|
-
# PyBuilder
|
|
71
|
-
target/
|
|
72
|
-
|
|
73
|
-
# Virtual environment
|
|
74
|
-
.env
|
|
75
|
-
.venv/
|
|
76
|
-
venv/
|
|
77
|
-
|
|
78
|
-
# PyCharm
|
|
79
|
-
.idea
|
|
80
|
-
|
|
81
|
-
# Python mode for VIM
|
|
82
|
-
.ropeproject
|
|
83
|
-
**/.ropeproject
|
|
84
|
-
|
|
85
|
-
# Vim swap files
|
|
86
|
-
**/*.swp
|
|
87
|
-
|
|
88
|
-
# VS Code
|
|
89
|
-
.vscode/
|
|
90
|
-
|
|
91
|
-
*.md
|
|
92
|
-
**/.ruff_cache
|
|
93
|
-
**/cahangelog
|
|
94
|
-
**/tests
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
FROM python:3.11-slim-bookworm
|
|
2
|
-
|
|
3
|
-
ENV LIBRDKAFKA_VERSION 1.9.2
|
|
4
|
-
|
|
5
|
-
WORKDIR /app
|
|
6
|
-
|
|
7
|
-
RUN apt update && \
|
|
8
|
-
apt install -y wget make g++ libssl-dev autoconf automake libtool curl librdkafka-dev && \
|
|
9
|
-
apt-get clean
|
|
10
|
-
|
|
11
|
-
COPY . /app
|
|
12
|
-
|
|
13
|
-
RUN export POETRY_VIRTUALENVS_CREATE=false && make install/prod && pip cache purge
|
|
14
|
-
|
|
15
|
-
ENTRYPOINT ocean sail
|
|
File without changes
|
|
File without changes
|
|
File without changes
|