From 3354364d5ec0b056f9511001f028e67da8f504df Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Tue, 27 Dec 2011 13:30:44 -0500 Subject: [PATCH] Edited readme --- README.md | 3 +++ app/config/config.php | 5 +++++ app/config/db.php | 13 +++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 app/config/config.php create mode 100644 app/config/db.php diff --git a/README.md b/README.md index e69de29..c729ee5 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,3 @@ +miniMVC is a php framework based on javascript-like objects. + +It is currently pre-alpha. Features are still being built-out. \ No newline at end of file diff --git a/app/config/config.php b/app/config/config.php new file mode 100644 index 0000000..447e78b --- /dev/null +++ b/app/config/config.php @@ -0,0 +1,5 @@ + array( + 'type' => '', + 'host' => '', + 'user' => '', + 'pass' => '', + 'db' => '', + 'prefix' => '', + 'persist' => '', + ), +); \ No newline at end of file