Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Facebook from the framework #103

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ENV PATH $PATH:/home/airflow/google-cloud-sdk/bin
RUN mkdir /opt/airflow/gcp_airflow_foundations

# Copying only files essential for installing gcp_airflow_foundations
COPY setup.py setup.cfg README.md MANIFEST.in requirements.txt requirements-providers.txt requirements-ci.txt /opt/airflow/
COPY setup.py setup.cfg README.md MANIFEST.in requirements.txt requirements-providers.txt requirements-facebook.txt docker/gcp_airflow_foundations_facebook-0.0.1-py2.py3-none-any.whl requirements-ci.txt /opt/airflow/
#COPY tests /opt/airflow/tests
COPY gcp_airflow_foundations/__init__.py /opt/airflow/gcp_airflow_foundations/__init__.py
COPY gcp_airflow_foundations/version.py /opt/airflow/gcp_airflow_foundations/version.py
Expand All @@ -27,6 +27,7 @@ RUN pip install --upgrade pip

# - Install dependencies
RUN pip install -e .[providers,test]
RUN pip install gcp_airflow_foundations_facebook-0.0.1-py2.py3-none-any.whl

# USER airflow

Expand Down
90 changes: 0 additions & 90 deletions gcp_airflow_foundations/base_class/facebook_config.py

This file was deleted.

27 changes: 0 additions & 27 deletions gcp_airflow_foundations/base_class/facebook_table_config.py

This file was deleted.

2 changes: 1 addition & 1 deletion gcp_airflow_foundations/base_class/source_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from gcp_airflow_foundations.enums.source_type import SourceType
from gcp_airflow_foundations.base_class.landing_zone_config import LandingZoneConfig
from gcp_airflow_foundations.base_class.schema_options_config import SchemaOptionsConfig
from gcp_airflow_foundations.base_class.facebook_config import FacebookConfig
from gcp_airflow_foundations_facebook.base_class.facebook_config import FacebookConfig
from gcp_airflow_foundations.base_class.dlp_source_config import DlpSourceConfig
from gcp_airflow_foundations.base_class.source_ingestion_config import FullIngestionConfig

Expand Down
4 changes: 2 additions & 2 deletions gcp_airflow_foundations/base_class/source_table_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
from gcp_airflow_foundations.base_class.source_base_config import SourceBaseConfig
from gcp_airflow_foundations.base_class.ods_table_config import OdsTableConfig
from gcp_airflow_foundations.base_class.hds_table_config import HdsTableConfig
from gcp_airflow_foundations.base_class.facebook_table_config import FacebookTableConfig
from gcp_airflow_foundations.enums.facebook import ApiObject
from gcp_airflow_foundations_facebook.base_class.facebook_table_config import FacebookTableConfig
from gcp_airflow_foundations_facebook.enums.facebook import ApiObject
from gcp_airflow_foundations.base_class.column_udf_config import ColumnUDFConfig


Expand Down
31 changes: 0 additions & 31 deletions gcp_airflow_foundations/enums/facebook.py

This file was deleted.

Empty file.
Empty file.
Loading