Skip to content

Commit 2343c16

Browse files
committed
Readme + gitignore changes
1 parent efa571c commit 2343c16

3 files changed

Lines changed: 28 additions & 4 deletions

File tree

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,9 @@ npm-debug.log*
99

1010
# Dependency directories
1111
node_modules/
12+
13+
# Parcel cache
14+
.cache
15+
16+
# Package json lock
17+
package-lock.json

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,12 @@
1-
# kirby3-parcel-build-kit
2-
Basic Parcel+Tailwind+Kirby opinionated starter kit.
1+
# Kirby + Parcel + Tailwind minimal starter
2+
## How to use
3+
To get you started 5 step procedure.
4+
```
5+
1. git clone https://github.com/floriankarsten/kirby3-parcel-build-kit project
6+
2. cd project
7+
3. npm install
8+
4. cd htdocs
9+
5. composer install
10+
```
11+
12+
Then point your webserver to ```htodcs/public``` folder.

htdocs/.gitignore

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,16 @@
55
/kirby/
66
/vendor/
77

8-
9-
8+
# built assets
9+
/public/assets/css/style.css
10+
/public/assets/css/style.css.map
11+
/public/assets/css/style.js
12+
/public/assets/css/style.js.map
13+
/public/assets/js/main.js
14+
/public/assets/js/main.js.map
15+
16+
# composer lock
17+
composer.lock
1018

1119
# System files
1220
# ------------

0 commit comments

Comments
 (0)