Skip to content

Commit 5e5092b

Browse files
committed
Install Tailwindcss v2
1 parent c1abab8 commit 5e5092b

File tree

9 files changed

+215
-19393
lines changed

9 files changed

+215
-19393
lines changed

.env.example

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
APP_NAME=Laravel
2+
APP_ENV=local
3+
APP_KEY=
4+
APP_DEBUG=true
5+
APP_URL=http://localhost
6+
7+
LOG_CHANNEL=stack
8+
LOG_LEVEL=debug
9+
10+
DB_CONNECTION=mysql
11+
# DB_HOST=127.0.0.1
12+
DB_HOST=mysql
13+
DB_PORT=3306
14+
DB_DATABASE=tw_laravel
15+
DB_USERNAME=root
16+
DB_PASSWORD=
17+
18+
BROADCAST_DRIVER=log
19+
CACHE_DRIVER=file
20+
QUEUE_CONNECTION=sync
21+
SESSION_DRIVER=file
22+
SESSION_LIFETIME=120
23+
24+
# MEMCACHED_HOST=127.0.0.1
25+
MEMCACHED_HOST=memcached
26+
27+
# REDIS_HOST=127.0.0.1
28+
REDIS_HOST=redis
29+
REDIS_PASSWORD=null
30+
REDIS_PORT=6379
31+
32+
MAIL_MAILER=smtp
33+
MAIL_HOST=mailhog
34+
MAIL_PORT=1025
35+
MAIL_USERNAME=null
36+
MAIL_PASSWORD=null
37+
MAIL_ENCRYPTION=null
38+
MAIL_FROM_ADDRESS=null
39+
MAIL_FROM_NAME="${APP_NAME}"
40+
41+
AWS_ACCESS_KEY_ID=
42+
AWS_SECRET_ACCESS_KEY=
43+
AWS_DEFAULT_REGION=us-east-1
44+
AWS_BUCKET=
45+
46+
PUSHER_APP_ID=
47+
PUSHER_APP_KEY=
48+
PUSHER_APP_SECRET=
49+
PUSHER_APP_CLUSTER=mt1
50+
51+
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
52+
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
53+
MIX_APP_HOST=tw-laravel.test

.gitignore

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
/node_modules
2+
/public/hot
3+
/public/storage
4+
/storage/*.key
5+
/vendor
6+
.env
7+
.env.backup
8+
.phpunit.result.cache
9+
Homestead.json
10+
Homestead.yaml
11+
npm-debug.log
12+
yarn-error.log
13+
14+
### macOS ###
15+
# General
16+
.DS_Store
17+
.AppleDouble
18+
.LSOverride
19+
20+
# Icon must end with two \r
21+
Icon
22+
23+
24+
# Thumbnails
25+
._*
26+
27+
# Files that might appear in the root of a volume
28+
.DocumentRevisions-V100
29+
.fseventsd
30+
.Spotlight-V100
31+
.TemporaryItems
32+
.Trashes
33+
.VolumeIcon.icns
34+
.com.apple.timemachine.donotpresent
35+
36+
# Directories potentially created on remote AFP share
37+
.AppleDB
38+
.AppleDesktop
39+
Network Trash Folder
40+
Temporary Items
41+
.apdisk

README.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Tailwind CSS v2.0 | Laravel Setup and Install
2+
3+
Source Code for Setup and Install Laravel with Tailwindcss v2.0 on <a href="https://www.youtube.com/channel/UCSyosm-WcUPT4LnUIIdqSCw" title="Subscribe to CodeWithChu Youtube Channel" target="_blank">CodeWithChu</a> YouTube Channel.
4+
5+
## Install
6+
7+
```
8+
npm install
9+
```
10+
11+
## NPM Scripts
12+
13+
```sh
14+
# Build for Dev
15+
$ npm run dev
16+
$ npm run watch
17+
18+
# Build for Production
19+
$ npm run prod
20+
```
21+
22+
## connect with @codewithchu
23+
24+
- [Website](https://www.arthurchu.ca "Web Development Tutorials, Tips & Tricks | CodeWithChu Website")
25+
- [YouTube](https://www.youtube.com/channel/UCSyosm-WcUPT4LnUIIdqSCw "CodeWithChu Youtube Channel")
26+
- [Instagram](https://www.instagram.com/codewithchu/ "Follow CodeWithChu on Instagram")
27+
- [Twitter](https://twitter.com/codewithchu "Follow CodeWithChu on Twitter")
28+
- [Facebook](https://www.facebook.com/codewithchu "Like CodeWithChu on Facebook")
29+
- [Codepen](https://codepen.io/codewithchu "Follow CodeWithChu on Codepen")

public/css/app.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)