From 3a923cf1b305aafb84cd7d80b4c69512fd05eb7e Mon Sep 17 00:00:00 2001 From: Joan Date: Tue, 23 Feb 2021 15:06:55 +0100 Subject: [PATCH] Move default config to avoid overwriting a working configuration --- .gitignore | 1 + README.md | 8 +++++--- config.php => config.php.dist | 0 3 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 .gitignore rename config.php => config.php.dist (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4f4773f --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +config.php diff --git a/README.md b/README.md index fa64207..3c01f1c 100644 --- a/README.md +++ b/README.md @@ -18,11 +18,13 @@ 2. Connect to your database and execute the SQL statements contained in the file **database/urls.sql** -3. Edit the **config.php** file +3. Rename the file **config.php.dist** to config.php -4. Upload files into your server +4. Edit the **config.php** file -5. That's it ! +5. Upload files into your server + +6. That's it ! ## Contributing diff --git a/config.php b/config.php.dist similarity index 100% rename from config.php rename to config.php.dist