From eb22f37654ff5cea586b08f3d928ba3a43533db7 Mon Sep 17 00:00:00 2001 From: Mark Date: Thu, 13 Oct 2022 07:59:08 -0700 Subject: [PATCH] Whitespace and gitignore --- .editorconfig | 2 +- .gitignore | 2 -- jupyter/.gitignore | 2 ++ syncthing/docker-compose.yml | 22 +++++++++++----------- 4 files changed, 14 insertions(+), 14 deletions(-) delete mode 100644 .gitignore create mode 100644 jupyter/.gitignore diff --git a/.editorconfig b/.editorconfig index 3b6d786..41e58be 100644 --- a/.editorconfig +++ b/.editorconfig @@ -13,4 +13,4 @@ insert_final_newline = false [*.yml] indent_style = space -indent_size = 4 \ No newline at end of file +indent_size = 2 \ No newline at end of file diff --git a/.gitignore b/.gitignore deleted file mode 100644 index f3c246c..0000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -jupyter/jupyter -jupyter/notebooks \ No newline at end of file diff --git a/jupyter/.gitignore b/jupyter/.gitignore new file mode 100644 index 0000000..2761cbd --- /dev/null +++ b/jupyter/.gitignore @@ -0,0 +1,2 @@ +jupyter/ +notebooks/ \ No newline at end of file diff --git a/syncthing/docker-compose.yml b/syncthing/docker-compose.yml index 72b350d..d5b28f2 100644 --- a/syncthing/docker-compose.yml +++ b/syncthing/docker-compose.yml @@ -1,15 +1,15 @@ version: "2" services: - syncserver: - build: ./build - container_name: syncthing - restart: unless-stopped + syncserver: + build: ./build + container_name: syncthing + restart: unless-stopped - volumes: - - "./stdata:/stdata" - - "./stconfig:/stconfig" - # host:container - ports: - - "8384:8384" - - "22067:22067" \ No newline at end of file + volumes: + - "./stdata:/stdata" + - "./stconfig:/stconfig" + + ports: + - "8384:8384" + - "22067:22067" \ No newline at end of file