1 Commits

Author SHA1 Message Date
renovate[bot]
ee2da14792 Update dependency eslint to v9 2024-08-13 21:06:33 +00:00
8 changed files with 11793 additions and 3269 deletions

View File

@@ -1,4 +1,4 @@
FROM node:20.2.0-alpine3.16 AS builder FROM node:20.2.0-alpine3.16 as builder
WORKDIR /app WORKDIR /app
@@ -10,7 +10,7 @@ COPY . .
RUN npm run build RUN npm run build
FROM caddy:2.8.4-alpine AS runtime FROM caddy:2.8.4-alpine as runtime
WORKDIR /my-site WORKDIR /my-site

View File

@@ -22,12 +22,12 @@ backend:
frontend: frontend:
@npm install @vue/cli-service @npm install @vue/cli-service
@npx vue-cli-service serve @npx vue-cli-service serve
.PHONY: frontend .PHONY: server
## dev: Build and run in docker compose ## dev: Build and run in docker compose
dev: dev:
docker compose up --build -d docker compose up --build -d
.PHONY: dev .PHONY: up
## prod: Run the latest images in docker compose ## prod: Run the latest images in docker compose
prod: prod:
@@ -35,7 +35,7 @@ prod:
@docker pull ghcr.io/davegallant/rfd-fyi-backend @docker pull ghcr.io/davegallant/rfd-fyi-backend
@docker pull ghcr.io/davegallant/rfd-fyi-frontend @docker pull ghcr.io/davegallant/rfd-fyi-frontend
@docker compose -f docker-compose.prod.yml up -d @docker compose -f docker-compose.prod.yml up -d
.PHONY: prod .PHONY: up
## teardown: Teardown docker ## teardown: Teardown docker
teardown: teardown:

View File

@@ -1,4 +1,4 @@
# rfd.fyi # rfd-fyi
This repository provides a simple, less-distracting overlay for hot deals posted on https://forums.redflagdeals.com. This repository provides a simple, less-distracting overlay for hot deals posted on https://forums.redflagdeals.com.

15051
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -17,6 +17,7 @@
"cssnano": "^7.0.0", "cssnano": "^7.0.0",
"jquery": "^3.7.0", "jquery": "^3.7.0",
"moment": "^2.29.4", "moment": "^2.29.4",
"postcss": "^8.4.33",
"vue": "^3.3.4", "vue": "^3.3.4",
"vue-github-button": "^3.0.3", "vue-github-button": "^3.0.3",
"vue-gtag": "^2.0.1", "vue-gtag": "^2.0.1",

7
postcss.config.js Normal file
View File

@@ -0,0 +1,7 @@
module.exports = {
plugins: [
require('cssnano')({
preset: 'default',
}),
],
};

View File

@@ -4,7 +4,6 @@
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" /> <meta name="viewport" content="width=device-width,initial-scale=1.0" />
<meta name="description" content="An overlay of rfd deals" />
<link rel="icon" href="<%= BASE_URL %>favicon.png" /> <link rel="icon" href="<%= BASE_URL %>favicon.png" />
<link <link
rel="stylesheet" rel="stylesheet"

View File

@@ -15,7 +15,7 @@ html {
} }
a { a {
color: #96ada5; /**/ color: #83a598; /**/
} }
a:visited { a:visited {
color: #53514f; /**/ color: #53514f; /**/