From 3b6afaffbd58f8acbcdc865c004f5cf6ce2e4d40 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Benjamin=20H=C3=A4ttasch?=
 <benjamin.haettasch@cs.tu-darmstadt.de>
Date: Wed, 16 Oct 2019 20:39:17 +0200
Subject: [PATCH] Adapt gitignore to allow shipping of static files in apps

After this commit, only the top level static files folder is ignored, while apps may contain static files that can then be collected by django
---
 .gitignore | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index 0b9a9af3..7410ef75 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,7 +5,7 @@
 AKPlanning/settings_secrets.py
 
 # static files generated by django
-static/
+/static/
 
 # Created by https://www.gitignore.io/api/python,django,virtualenv,pycharm+all
 # Edit at https://www.gitignore.io/?templates=python,django,virtualenv,pycharm+all
-- 
GitLab