aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/README.md b/README.md
index b819b41..c881fea 100644
--- a/README.md
+++ b/README.md
@@ -13,6 +13,16 @@ MAIN - the simple PHP framework
views (create a folder for each controller and an action.html file for every view)
data (a good place to store all your application data, logs, etc)
+So a typical bootstrap would go something like this:
+
+ cd mysite
+ mkdir system/lib data public system
+ touch public/index.php data/error.log
+ cd system/lib
+ git clone git://github.com/filipp/main.git
+ cd ../..
+ mate .
+
## index.php ##
A typical index.php using Main would look like this: