From 3bd20bf39bbfa20df444ec193138c054ff6d35eb Mon Sep 17 00:00:00 2001 From: Anthony Miyaguchi Date: Wed, 12 Feb 2020 13:03:15 -0800 Subject: [PATCH] Ignore only build at root directory; add java ignores (#506) --- .dockerignore | 8 +++++--- .gitignore | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.dockerignore b/.dockerignore index bf9db60..20b21b3 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,7 +1,9 @@ release/ -data/ venv/ -build/ -target/ +/build/ +/data/ +/target/ **/__pycache__/ **/*.pyc +.classpath +.project \ No newline at end of file diff --git a/.gitignore b/.gitignore index 239f5ca..899cad1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,9 @@ release/ -data/ venv/ -build/ -target/ +/build/ +/data/ +/target/ __pycache__/ *.pyc +.classpath +.project