From 297715d5ee7426e9f2090e5226f1f11e0e77e0b8 Mon Sep 17 00:00:00 2001 From: Lebaud Antoine Date: Fri, 15 Sep 2023 10:00:49 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7(notebook)=20restrict=20work=20volu?= =?UTF-8?q?me=20to=20Warren's=20API=20folder?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Running the chmod recursively over all project's files was taking too long. Limit the scope to the Python package. --- Makefile | 4 ++-- docker-compose.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4cb1ff69..69b5c872 100644 --- a/Makefile +++ b/Makefile @@ -337,10 +337,10 @@ help: .PHONY: help jupytext--to-md: ## convert local ipynb files into md - bin/jupytext --to md work/**/*.ipynb + bin/jupytext --to md work/*.ipynb .PHONY: jupytext--to-md jupytext--to-ipynb: ## convert remote md files into ipynb - bin/jupytext --to ipynb work/**/*.md + bin/jupytext --to ipynb work/*.md .PHONY: jupytext--to-ipynb diff --git a/docker-compose.yml b/docker-compose.yml index 6f3d6f49..53a47c87 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -129,4 +129,4 @@ services: - users volumes: - ./notebook/notebooks:/home/jovyan/work - - .:/home/jovyan/work/warren + - ./src/api:/home/jovyan/work/warren