Skip to content

Commit b3c2c54

Browse files
committed
Add web page to showcase the list
1 parent e964870 commit b3c2c54

15 files changed

Lines changed: 6959 additions & 0 deletions

File tree

portal/.gitignore

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

portal/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 \Illuminate\Container\Container $container */
6+
/** @var \TightenCo\Jigsaw\Events\EventBus $events */
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+
*/

portal/composer.json

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

0 commit comments

Comments
 (0)