-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #94 from ploomber/pipeline
Setting up Ploomber pipeline components
- Loading branch information
Showing
10 changed files
with
2,789 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.movies_data.duckdb.metadata | ||
movies_data.duckdb | ||
movie_rec_system/products/eda-pipeline.ipynb | ||
movie_rec_system/products/extract-pipeline.ipynb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Use the official Python image as the base image | ||
FROM python:3.10 | ||
|
||
# Set the working directory | ||
WORKDIR /app | ||
|
||
# Copy the poetry files | ||
COPY pyproject.toml poetry.lock /app/ | ||
|
||
# Install poetry | ||
RUN pip install poetry | ||
|
||
# Install project dependencies | ||
RUN poetry install | ||
|
||
# Copy the rest of the application code | ||
COPY . . | ||
|
||
# Expose the port that the app runs on | ||
EXPOSE 8000 | ||
|
||
RUN poetry run ploomber build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
tasks: | ||
- source: movie_rec_system/etl/extract.py | ||
product: | ||
nb: movie_rec_system/products/extract-pipeline.ipynb | ||
data: movies_data.duckdb | ||
- source: movie_rec_system/etl/eda.ipynb | ||
static_analysis: disable | ||
product: | ||
nb: movie_rec_system/products/eda-pipeline.ipynb |
Oops, something went wrong.