These steps suggest that all dependencies like composer, nodejs, npm etc. are already installed, configured and working properly. The best is to use nginx server for laravel.
- Create project directory
$ mkdir projectdir && cd projectdir - Install Laravel
$ composer create-project --prefer-dist laravel/laravel . - Initialize GIT repo with
$ git init - Set repo origin
$ git remote add origin git@bitbucket.org:egeshi/oweb-test.git - Reset to current state
$ git fetch --all && git reset --hard origin/master - Run composer update without scripts
$ composer update --no-scripts - Run composer update again
$ composer update - Update .env with actual database config values
- Create database tables with
$ php artisan migrate - Donwload in install NPM stuff
$ npm install - Run
gulpto generate CSS and browserify/copy JS