diff --git a/.gitignore b/.gitignore
index c810f6d..ce06e22 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,4 +4,5 @@ composer.phar
composer.lock
.DS_Store
Thumbs.db
-.vagrant/
\ No newline at end of file
+.vagrant/
+dump.rdb
diff --git a/README.md b/README.md
index 9902aa1..139fdf9 100644
--- a/README.md
+++ b/README.md
@@ -6,8 +6,9 @@ Installing this app will provide you a tiny demo using
* Redis
* Memcache
* MySQL
+* And more
-for the lazy people who want to see before read, check this [demo](http://larabooster.io)
+for the lazy people who want to see before read, a demo will be soon available.
In the future I plan to add some new fun things like
@@ -22,8 +23,8 @@ Requirements
To make good use of vagrant you need to download
-1. Vagrant ;)
-2. VirtualBox
+1. [Vagrant](http://www.vagrantup.com/downloads.html)
+2. [VirtualBox](https://www.virtualbox.org/wiki/Downloads)
3. Precise32 Box (You can do without, but it's better to have it in local)
Guidelines
@@ -43,3 +44,31 @@ Screenshots
[... Coming soon ... ]
That's it !
+
+Roadmap
+-------
+
+# V0.1 - First release
+ [x] initial storages
+ [x] MySQL
+ [x] Redis
+ [x] memcache
+ [x] Basic UI (jQuery based)
+ [x] Boilerplate provisioning file
+# V0.2 - UI revamp :
+ [] UI Using angularJS
+ [] Better error handling (client side)
+ [] UI limitations of X items
+ [] Masked Input for hexadecimal
+# V0.3 - Backend improvment:
+ [] Http Middleware limit
+ [] Exception on Errors
+ [] Pagination handling
+# V0.4 - Open source relase + hosting:
+ [] Complete Readme
+ [] Getting started
+ [] Code snippets
+ [] Screenshots
+ [] Demo Hosting on DigitalOcean
+
+
diff --git a/app/routes.php b/app/routes.php
index 14c568a..581d371 100644
--- a/app/routes.php
+++ b/app/routes.php
@@ -35,7 +35,7 @@ function is_hexadecimal($color)
return $controller->store();
});
- Route::delete('mysql', function() {
+ Route::delete('mysql', function() {
$controller = new ColorsController(new DbColorRepository);
return $controller->delete();
});
@@ -46,7 +46,7 @@ function is_hexadecimal($color)
});
Route::delete('memcache', function() {
- $controller = new ColorsController(new MemcacheColorRepository);
+ $controller = new ColorsController(new MemcacheColorRepository);
return $controller->delete();
});
diff --git a/app/views/home.blade.php b/app/views/home.blade.php
index 3c9c121..7825c48 100644
--- a/app/views/home.blade.php
+++ b/app/views/home.blade.php
@@ -1,5 +1,10 @@
@extends('master')
+@section('javascript')
+
+
+@stop
+
@section('content')
@@ -18,6 +23,22 @@
+