From 79c6bb5b789bfe27511672e58f1d2368f4d99893 Mon Sep 17 00:00:00 2001 From: Mike Wink Date: Sun, 4 Jul 2021 11:23:34 +0200 Subject: [PATCH] Add a README.md file --- README.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..915b9af --- /dev/null +++ b/README.md @@ -0,0 +1,31 @@ +# Kylie Marilyn Website + +That is the static website for Miss Kylie Marilyn. It is powered by pure HTML and Tailwind CSS. The index is a PHP file so that I can have a dynamic year in the copyright. + +## Installation + +Do the normal `npm install` to install dependencies. See the Tailwind CSS documentation 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 +``` \ No newline at end of file