From 8c2c5d287d5ac08aa9d0a3fb3d353ea7a18c92c3 Mon Sep 17 00:00:00 2001 From: Marien Fressinaud Date: Sun, 14 Apr 2013 18:57:47 +0200 Subject: Fix issue #43 : création d'un installateur MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/configuration/application.ini | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 app/configuration/application.ini (limited to 'app/configuration') diff --git a/app/configuration/application.ini b/app/configuration/application.ini deleted file mode 100644 index 2beb60324..000000000 --- a/app/configuration/application.ini +++ /dev/null @@ -1,13 +0,0 @@ -[general] -environment = "development" -use_url_rewriting = false -sel_application = "flux rss lalala ~~~" - -base_url = "/~marien/rss/public" ; pas de slash à la fin /!\ -title = "FreshRSS" - -[db] -host = "localhost" -user = "bd" -password = "bede" -base = "marienfr_rss" -- cgit v1.2.3 From 6ce2b575eb501733e6936ac4b5f2e70d0f6ca13b Mon Sep 17 00:00:00 2001 From: Marien Fressinaud Date: Wed, 17 Apr 2013 18:30:14 +0200 Subject: Fix issue #59 : ajout des répertoires vides, obligatoires pour le fonctionnement de FreshRSS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 4 ---- app/configuration/.gitignore | 1 + cache/.gitignore | 1 + log/.gitignore | 1 + public/data/.gitignore | 1 + 5 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 app/configuration/.gitignore create mode 100644 cache/.gitignore create mode 100644 log/.gitignore create mode 100644 public/data/.gitignore (limited to 'app/configuration') diff --git a/.gitignore b/.gitignore index 61908804a..c9c8cacf4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1 @@ -app/configuration/application.ini lib/minz -log/application.log -cache -public/data diff --git a/app/configuration/.gitignore b/app/configuration/.gitignore new file mode 100644 index 000000000..72e8ffc0d --- /dev/null +++ b/app/configuration/.gitignore @@ -0,0 +1 @@ +* diff --git a/cache/.gitignore b/cache/.gitignore new file mode 100644 index 000000000..72e8ffc0d --- /dev/null +++ b/cache/.gitignore @@ -0,0 +1 @@ +* diff --git a/log/.gitignore b/log/.gitignore new file mode 100644 index 000000000..72e8ffc0d --- /dev/null +++ b/log/.gitignore @@ -0,0 +1 @@ +* diff --git a/public/data/.gitignore b/public/data/.gitignore new file mode 100644 index 000000000..72e8ffc0d --- /dev/null +++ b/public/data/.gitignore @@ -0,0 +1 @@ +* -- cgit v1.2.3