From 479ee5478b16f293a489724e73ad937168a821bd Mon Sep 17 00:00:00 2001 From: Arian Baishya Date: Tue, 13 Feb 2024 02:14:27 -0600 Subject: [PATCH] add gitignore and dockerignore files --- .dockerignore | 25 +++++++++++++++++++++++++ .gitignore | 14 ++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 .dockerignore create mode 100644 .gitignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..564f979 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,25 @@ +# Git +.git +.gitignore +.gitattributes + +# Docker +docker-compose.yml +Dockerfile +.docker +.dockerignore + +# Byte-compiled / optimized / DLL files +**/__pycache__/ +**/*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +build/ +dist/ +*.egg-info/ + +# Virtual environment +venv/ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7e01317 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +# Byte-compiled / optimized / DLL files +**/__pycache__/ +**/*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +build/ +dist/ +*.egg-info/ + +# Virtual environment +venv/