Skip to content
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 .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
data
data
.DS_Store
37 changes: 37 additions & 0 deletions application.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "CSV Echo App",
"description": "A Python Docker app that copies all CSV files from INPUT_DIR to OUTPUT_DIR.",
"inputs": [
{
"name": "data-volume",
"description": "volume containing the input and output directories",
"path": "/service/data",
"type": "DIRECTORY"
}
],
"outputs": [
{
"name": "outputs",
"description": "Output directory containing files",
"path": "/service/data/output",
"type": "DIRECTORY"
}
],
"resources": {
"cpu_cores": 1,
"ram_gb": 1,
"disk_gb": 1
},
"executors": [
{
"image": "hackathon/python",
"command": [ "python3.13", "/service/main.py" ],
"env": {
"INPUT_DIR": "/service/data/input",
"OUTPUT_DIR": "/service/data/output"
},
"workdir": "/service/data"
}
]
}