Console

Available commands
Limpid comes with a bunch of commands that helps you accelerate your work, so you just need to open you CMD and write the command you need
NB: if the php command does not work make sure to add php's directory to windows path
check this link: 
http://stackoverflow.com/questions/7307548/how-to-access-php-with-the-command-line-on-windows
php console create:schema
Create database from given configuration in the settings.php file
php console update:schema force
By launching this command Limpid will parse all your entities and gives them to doctrine to create related tables.
php console create:entity ModuleName:EntityName
Create an entity based on the given attributes
php console create:module ModuleName
Create a module inside you app directory
php console create:form ModuleName:EntityName
Create a form prototype for given entity
php console debug:routes
Display all routes you have in your application.

And to see all available commands you just write
php console