- create a new github repository
- git init
- git checkout -b integration
- git add -A .
- git commit -m "initial commit"
- git remote add origin [email protected]:kurashicom/repo_name.git
- git push -u origin integration
- create a new hipchat room for github notifiation
- create a new room for hipchat
- add web hook in the github
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/bootstrap/compiled.php | |
/app/storage/downloads | |
/app/storage/uploads | |
/app/storage/sessions/* | |
/app/storage/cache/* | |
/app/storage/logs | |
/app/config/database.php | |
/app/config/pubnub.php | |
vendor/.git | |
vendor/**/composer.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/vendor | |
/node_modules | |
/ruby_vendor | |
/.bundle | |
composer.phar | |
.DS_Store | |
Thumbs.db | |
.tmp | |
npm-debug.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/bower_components | |
/node_modules | |
/ruby_vendor | |
/.bundle | |
/.sass-cache | |
.tmp | |
.DS_Store | |
Thumbs.db | |
npm-debug.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ProductController extends Controller | |
{ | |
public function show($id) | |
{ | |
$product = $this->products->findOrFail($id); | |
$data = [ | |
'head' => $this->generateHeadTagsArray([ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ProductController extends Controller | |
{ | |
public function show($id) | |
{ | |
$product = $this->products->findOrFail($id); | |
return ProductResponse($product); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Illuminate\Contracts\Support\Responsable; | |
class ProductResponse implements Responsable | |
{ | |
/** | |
* Create new instances for dependencies. | |
* | |
* @param $product |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const mix = require('laravel-mix'); | |
/* | |
|-------------------------------------------------------------------------- | |
| Mix Asset Management | |
|-------------------------------------------------------------------------- | |
| | |
| Mix provides a clean, fluent API for defining some Webpack build steps | |
| for your Laravel application. By default, we are compiling the Sass | |
| file for the application as well as bundling up all the JS files. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const mix = require('laravel-mix'); | |
const s3Plugin = require('webpack-s3-plugin'); | |
/* | |
|-------------------------------------------------------------------------- | |
| Mix Asset Management | |
|-------------------------------------------------------------------------- | |
| | |
| Mix provides a clean, fluent API for defining some Webpack build steps | |
| for your Laravel application. By default, we are compiling the Sass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const mix = require('laravel-mix'); | |
/* | |
|-------------------------------------------------------------------------- | |
| Mix Asset Management | |
|-------------------------------------------------------------------------- | |
| | |
| Mix provides a clean, fluent API for defining some Webpack build steps | |
| for your Laravel application. By default, we are compiling the Sass | |
| file for the application as well as bundling up all the JS files. |
OlderNewer