Getting started with lithium
This is guide to getting started with lithium php web framework.
First, we need to create initial directory structure:
mkdir frameworks && cd frameworks git clone code@dev.lithify.me:lithium.git cd .. mkdir lithiumapp && cd lithiumapp cp -pR ../frameworks/lithium/app . ln -s ../frameworks/lithium/libraries libraries
Afterwards, configure apache host (don’t forget to restart apache):
<VirtualHost *:80>
ServerName lithiumapp.local
DocumentRoot "/PATH/TO/lithiumapp/app/webroot"
</VirtualHost>And finally, edit hosts file:
127.0.0.1 lithiumapp.local
Go to lithiumapp.local in your browser. If all went well, you should see screen with lithium default generated html.






