From 00ff78bf98c3722b9d167dd26c6127b201cd95c0 Mon Sep 17 00:00:00 2001 From: Tan Nguyen Date: Tue, 3 Jan 2023 11:18:24 +0700 Subject: [PATCH] update readme --- README.md | 4 +++- config/{database.php example => database.php.example} | 0 2 files changed, 3 insertions(+), 1 deletion(-) rename config/{database.php example => database.php.example} (100%) diff --git a/README.md b/README.md index 850aecc..3beac31 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,9 @@ npm run build You need to change the connection information to the database if you want to store and use data for the website. -Path: [`/config/database.php`](https://github.com/TanHongIT/yl-mvc-structure/tree/main/config) +Path: [`/config/database.php.example`](https://github.com/TanHongIT/yl-mvc-structure/tree/main/config) + +Copy the file `database.php.example` to `database.php` and edit the information in the file. ```php define('DB_HOST', 'localhost'); diff --git a/config/database.php example b/config/database.php.example similarity index 100% rename from config/database.php example rename to config/database.php.example