From 978df91b6e32cc507ab813d36c06fdd86b226d4d Mon Sep 17 00:00:00 2001 From: klemek Date: Sat, 20 Dec 2025 16:37:24 +0100 Subject: [PATCH] chore: template configuration --- README.md | 65 +++--------------------------------------------- index.html | 3 +-- public/style.css | 5 ++-- src/App.vue | 22 +++------------- 4 files changed, 9 insertions(+), 86 deletions(-) diff --git a/README.md b/README.md index 8b63f7e..3c84ca2 100644 --- a/README.md +++ b/README.md @@ -1,63 +1,4 @@ -# Vue-boilerplate -*Minimal static Vue project* +# Coverify +*Create album covers from mundane photos* - - -### [Tool link](https://klemek.github.io/vue-boilerplate/) - -## Use this template - - - -### Creating project - -#### Method 1: Using GitHub repository template - -[Use this template](https://github.com/new?template_name=vue-boilerplate&template_owner=klemek) - -#### Method 2: CLI forking - -```bash -git clone git@github.com/klemek/vue-boilerplate.git {PROJECT} -cd {PROJECT} -git remote rename origin template -git remote add origin {PROJECT REMOTE} -``` - -### Tasks - -> Every task is indicated with a TODO - -1. [ ] Rename app in [README.md](./README.md), [index.html](./index.html), [App.vue](./src/App.vue) and [package.json](./package.json) -2. [ ] Change app hue and saturation in [style.css](./public/style.css) -3. [ ] Remove this part and all TODO - -### Updating from template - -To update from templates latest changes: - -```shell -make update-template -``` - -### Makefile targets - -```txt -Usage: make [target1] (target2) ... - -Commands/Targets: -help show this message -build build static site in "dist" -dev run dev version of static site -lint lint code -fix fix and reformat code -update-template fetch and merge core changes from template - -Environment: -BUN = bun -``` - -### Tips - -* [Material design colors](https://materialui.co/colors/) are available, you can use `class="red-500"` on your HTML -* [Lucide icons](https://lucide.dev/icons) are available, you can use `` on your Vue template +### [Tool link](https://klemek.github.io/coverify/) diff --git a/index.html b/index.html index 23daa43..b29dc53 100644 --- a/index.html +++ b/index.html @@ -1,8 +1,7 @@ - - Change this you moron + Coverify diff --git a/public/style.css b/public/style.css index d30a31f..2cd70bf 100644 --- a/public/style.css +++ b/public/style.css @@ -85,9 +85,8 @@ CUSTOM STYLE :root { /* https://materialui.co/colors/ */ - /* TODO: 2. change hue and saturation */ - --hue-primary: 65.52; - --sat-primary: 20%; + --hue-primary: 199.53; + --sat-primary: 28.30%; --background: hsl(var(--hue-primary), var(--sat-primary), 96.08%); --background-primary: hsl(var(--hue-primary), var(--sat-primary), 93.33%); --background-secondary: hsl(var(--hue-primary), var(--sat-primary), 90%); diff --git a/src/App.vue b/src/App.vue index 94477f1..dcab164 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,7 +1,6 @@