Use this skeleton application to quickly setup and start working on a new Angular 2 & Slim Framework 3 application.
- Composer
- NodeJS / NPM
- Gulp Cli Installed globally
git clone https://github.com/abdmaster/slim3-ng2-quickstart.git
cd slim3-ng2-quickstart
cd server
composer install
cd ../client
npm install
gulp vendor.copy
gulp app.build
cd ..
php -S 0.0.0.0:8888 -t public public/index.php
After these, run http://0.0.0.0:8888/ in a browser.