Add README.md file
This commit is contained in:
parent
162c6f4283
commit
b518f881a6
1 changed files with 38 additions and 0 deletions
38
README.md
Normal file
38
README.md
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
# Mike Wink Website
|
||||
|
||||
That is the static website for Mike Wink. It is powered by pure HTML and Tailwind CSS. The index is a PHP file so that I
|
||||
can have a dynamic elements.
|
||||
|
||||
## Installation
|
||||
|
||||
Do a normal `npm install` to install dependencies. See the Tailwind CSS [documentation](https://tailwindcss.com/docs) for details.
|
||||
|
||||
### Run dev _watch_
|
||||
|
||||
```shell
|
||||
npx tailwindcss \
|
||||
-i ./src/css/styles.css \
|
||||
-o public/build/styles.css \
|
||||
--jit \
|
||||
--purge="./public/**/*.php" \
|
||||
--watch
|
||||
````
|
||||
|
||||
### Run production build
|
||||
|
||||
```shell
|
||||
NODE_ENV=production \
|
||||
npx tailwindcss \
|
||||
-i ./src/css/styles.css \
|
||||
-o public/build/styles.css \
|
||||
--jit \
|
||||
--purge="./public/**/*.php" \
|
||||
--minify
|
||||
```
|
||||
|
||||
## Used assets
|
||||
|
||||
- Background pattern "Topography" from [Hero Patterns](https://heropatterns.com)
|
||||
- D-DIN fonts from [1001 Fonts](https://www.1001fonts.com/users/datto/)
|
||||
- Color palette from [Coolers](https://coolors.co/3d5a80-98c1d9-e0fbfc-ee6c4d-293241)
|
||||
- SVG icons from [Simple Icons](https://simpleicons.org/)
|
||||
Loading…
Reference in a new issue