From 279a1586815de16c1f879933d805823d33f14d7f Mon Sep 17 00:00:00 2001
From: Marvin Borner
Date: Wed, 18 Apr 2018 15:05:30 +0200
Subject: Deployed to server - fixed settings page

---
 main/.gitignore | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 62 insertions(+)
 create mode 100644 main/.gitignore

(limited to 'main/.gitignore')

diff --git a/main/.gitignore b/main/.gitignore
new file mode 100644
index 0000000..ee30f1e
--- /dev/null
+++ b/main/.gitignore
@@ -0,0 +1,62 @@
+# Ignores my text editor metadata
+*.komodoproject
+
+# Ignores Mac metadata.  You can configure this globally if you use a Mac: http://islegend.com/development/setting-global-gitignore-mac-windows/
+.DS_Store
+
+# Ignore developer resources
+_meta/*
+
+# Ignore personal config files (dev)
+app/.env
+
+# Ignore composer-generated files
+composer.lock
+composer.phar
+
+# Ignore log, cache, and sessions directories
+app/cache/*
+app/logs/*
+app/sessions/*
+
+# Unignore log, cache, and sessions .gitkeeps
+!app/cache/.gitkeep
+!app/logs/.gitkeep
+!app/sessions/.gitkeep
+
+# Ignore bower vendor assets
+/app/sprinkles/*/assets/vendor/
+
+# Ignore sprinkles.json config file
+app/sprinkles.json
+
+# Ignore sample site sprinkle
+app/sprinkles/site-dev
+
+# Ignore Composer vendor
+app/vendor/*
+
+# Ignore node modules
+build/node_modules/*
+
+# Ignore generated bundle schema files
+build/bundle.config.json
+build/bundle.result.json
+
+# Ignore temporary build assets
+build/temp
+
+# Ignore npm-debug.log
+build/npm-debug.log
+
+# Ignore compiled assets
+public/assets/*
+
+# Ignore minified assets (v0.3.x)
+public/js/min/*
+public/css/min/*
+
+# Ignore personal config files (v0.3.x)
+app/config-userfrosting.php
+
+app/database/userfrosting.db
-- 
cgit v1.2.3