Skip to content

Commit e38b817

Browse files
committed
Init
0 parents  commit e38b817

16 files changed

+1880
-0
lines changed

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/build_local/
2+
/source/assets/build/
3+
/cache/
4+
/node_modules/
5+
/vendor/
6+
/.idea/
7+
/.vscode/
8+
package-lock.json
9+
yarn.lock
10+
npm-debug.log
11+
yarn-error.log
12+
13+
# Optional ignores
14+
# /build_staging/
15+
# /build_production/

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
## E-commerce website
2+
3+
### Project setup
4+
```
5+
composer install && npm install
6+
```
7+
8+
### Compiles and hot-reloads for development
9+
```
10+
npm run watch
11+
```
12+
13+
### Compiles and minifies for production
14+
```
15+
npm run production
16+
```

bootstrap.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
use TightenCo\Jigsaw\Jigsaw;
4+
5+
/** @var $container \Illuminate\Container\Container */
6+
/** @var $events \TightenCo\Jigsaw\Events\EventBus */
7+
8+
/**
9+
* You can run custom code at different stages of the build process by
10+
* listening to the 'beforeBuild', 'afterCollections', and 'afterBuild' events.
11+
*
12+
* For example:
13+
*
14+
* $events->beforeBuild(function (Jigsaw $jigsaw) {
15+
* // Your code here
16+
* });
17+
*/

composer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"require": {
3+
"tightenco/jigsaw": "^1.3"
4+
}
5+
}

0 commit comments

Comments
 (0)