Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#33 [Design] Added WIP concept #40

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
27 changes: 0 additions & 27 deletions LICENSE.md

This file was deleted.

9 changes: 0 additions & 9 deletions Makefile

This file was deleted.

10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@
This is a bit messy, if you're good at cleaning it up, please submit a PR!

Steps to get the site running:
* Run `cp .htaccess.example .htaccess` and replace "socketo.me" with what ever your local URL is for the site
* Run `composer.phar install` in the repository directory
* Run `make`

This is assuming you're using Apache. The .htaccess is re-writing to ignore the root directory and look at /web as the root.
The demo requires a couple external libraries loaded by composer, the Makefile moves in /web to be publically accessible.
* Run 'npm install'
* Run `composer install` in the repository directory
* Run `npm run dev/production`
* Run `composer site build/serve`

## Documentation

Expand Down
35 changes: 0 additions & 35 deletions bin/echo.php

This file was deleted.

42 changes: 0 additions & 42 deletions bin/run-all-the-things.php

This file was deleted.

17 changes: 17 additions & 0 deletions bootstrap.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

use TightenCo\Jigsaw\Jigsaw;

/** @var $container \Illuminate\Container\Container */
/** @var $events \TightenCo\Jigsaw\Events\EventBus */

/**
* You can run custom code at different stages of the build process by
* listening to the 'beforeBuild', 'afterCollections', and 'afterBuild' events.
*
* For example:
*
* $events->beforeBuild(function (Jigsaw $jigsaw) {
* // Your code here
* });
*/
Loading