Skip to content
This repository was archived by the owner on Jan 24, 2022. It is now read-only.

Commit b00c45d

Browse files
committed
Init
0 parents  commit b00c45d

17 files changed

+1919
-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/

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 khatab Wedaa
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

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
## Jigsaw Tailwindcss
2+
3+
Jigsaw starter project for build website with laravel blade, tailwindcss, and aplinejs.
4+
5+
### Installation
6+
7+
Run setup command and will install all Composer & NPM dependencies.
8+
```shell
9+
./bin/setup.sh
10+
```
11+
12+
### Hot Reloading
13+
14+
Using watch command to watch all your project files.
15+
16+
```shell
17+
npm run watch
18+
```
19+
20+
### Production
21+
22+
If you want to deploy your app on Netlify you don't need to add anything, netlify.toml added by defualt. or you can run production command to build your deploy app
23+
24+
```shell
25+
npm run production
26+
```

bin/setup.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
if [ ! -f composer.json ]; then
4+
echo "Please make sure to run this script from the root directory of this repo."
5+
exit 1
6+
fi
7+
8+
composer install
9+
npm install
10+
npm run dev

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)