===
- NodeJs with npm and packages:
- gulp
- php 5.4 with mcrypt extention
- composer
- mysql
- apache or nginx
- Ruby with gems:
- sass
- bourbon 3.1.8
sudo gem install bourbon -v 3.1.8
- neat 1.5.0
sudo gem install neat -v 1.5.0
in terminal
cd [project root]
sudo npm install
bower install
bourbon install
neat install
gulp watch
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
-
Download vendor files
composer install
-
Give Apache user access to storage files
sudo chown -R www-data:www-data app/storage/
- make database with name: yaskalaravel
- create the migration database:
php artisan migrate:install
- migrate the translation tables:
php artisan migrate --package=waavi/translation
- migrate the other tables and seed them:
php artisan migrate --seed
- load the translations from the json files:
php artisan translator:load
Apache
<Directory "[yourLocalhostDirectory]">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
Options +FollowSymLinks
</Directory>