Skip to content

Commit b1dd8cf

Browse files
committed
Initial commit
0 parents  commit b1dd8cf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+45888
-0
lines changed

.gitignore

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/build_local/
2+
/cache/
3+
/node_modules/
4+
/vendor/
5+
/.idea/
6+
/.vscode/
7+
npm-debug.log
8+
yarn-error.log
9+
10+
# Optional ignores
11+
# /build_staging/
12+
# /build_production/
13+
# /source/assets/build/css/
14+
# /source/assets/build/fonts/
15+
# /source/assets/build/js/

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Lucky Media
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Webstarter
2+
A starter template for building static websites with Tailwind, Vue and Jigsaw.
3+
4+
# Features
5+
- Tailwind CSS for styling
6+
- Purge CSS configured for production
7+
- VueJS as a frontend framework
8+
- Jigsaw for static file generation
9+
- Blade templating engine
10+
- Bootstrap grid for Tailwind
11+
12+
# What will you need
13+
- [Composer](https://www.getcomposer.org/) installed.
14+
- [NodeJS with NPM](https://nodejs.org/en/)
15+
16+
# How to install
17+
Start by cloning the project then running the following commands.
18+
``` composer install ```
19+
For installing Jigsaw with its dependencies.
20+
``` npm install . ```
21+
For installing the required frontend libraries.
22+
23+
# How to use it
24+
``` npm run watch ``` for development.
25+
``` npm run production ``` for production.
26+
``` ./vendor/bin/jigsaw build ``` for building the pages.

bootstrap.php

+17
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

+5
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)