From a90498a94a76d719acb7bbb735780f61602b6a1d Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Sun, 1 Jun 2025 18:50:37 +0300 Subject: [PATCH] Features: 1) Add `.gitkeep` files for `payments/static` and `blog/static` directories to track empty folders; Fixes: 1) Update `.dockerignore` to include exceptions for static directories under `core`, `blog`, `vibes_auth`, and `payments`; Extra: 1) Adjust `.dockerignore` formatting by adding a newline at the end and ignoring `scripts` directory. --- .dockerignore | 9 ++++++++- blog/static/.gitkeep | 0 payments/static/.gitkeep | 0 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 blog/static/.gitkeep create mode 100644 payments/static/.gitkeep diff --git a/.dockerignore b/.dockerignore index 3e789adf..46687cd6 100644 --- a/.dockerignore +++ b/.dockerignore @@ -72,6 +72,13 @@ db_backups/ services_data/ static/ media/ +!core/static +!blog/static +!vibes_auth/static +!payments/static # Environment file -.env \ No newline at end of file +.env + +# Host's scripts +scripts \ No newline at end of file diff --git a/blog/static/.gitkeep b/blog/static/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/payments/static/.gitkeep b/payments/static/.gitkeep new file mode 100644 index 00000000..e69de29b