mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2025-08-05 23:03:39 +00:00
Update css and README
This commit is contained in:
8
Makefile
8
Makefile
@@ -13,13 +13,13 @@ help:
|
||||
@echo
|
||||
.PHONY: help
|
||||
|
||||
## backend-server: Build and run the backend from source
|
||||
backend-server:
|
||||
## backend: Build and run the backend from source
|
||||
backend:
|
||||
@cd backend && go run .
|
||||
.PHONY: server
|
||||
|
||||
|
||||
## frontend-server: Build and run the frontend from source
|
||||
frontend-server:
|
||||
## frontend: Build and run the frontend from source
|
||||
frontend:
|
||||
@npx vue-cli-service serve
|
||||
.PHONY: server
|
||||
|
17
README.md
17
README.md
@@ -1,8 +1,21 @@
|
||||
# rfd-fyi
|
||||
|
||||
## Dev
|
||||
This repository provides a simple, less-distracting overlay for hot deals posted on https://forums.redflagdeals.com.
|
||||
|
||||
The frontend is made with Vue 3 and the backend is written in Go. The backend exists for caching purposes; to prevent excessive requests to RedFlagDeals itself.
|
||||
|
||||
It is hosted at [rfd.fyi](https://rfd.fyi).
|
||||
|
||||
## Local Development
|
||||
|
||||
To get up and running locally: in one pane/tab, run:
|
||||
|
||||
```sh
|
||||
make backend
|
||||
```
|
||||
|
||||
In another pane/tab, run:
|
||||
|
||||
```sh
|
||||
make frontend
|
||||
make backend
|
||||
```
|
||||
|
@@ -4,6 +4,13 @@
|
||||
|
||||
body {
|
||||
background-color: black;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
html {
|
||||
background-color: #282828; /**/
|
||||
color: #ebdbb2; /**/
|
||||
min-width: 100%;
|
||||
}
|
||||
|
||||
.thead {
|
||||
@@ -163,10 +170,6 @@ h6 {
|
||||
font-family: "PT Sans Narrow", sans-serif;
|
||||
font-weight: 700;
|
||||
}
|
||||
html {
|
||||
background-color: #282828; /**/
|
||||
color: #ebdbb2; /**/
|
||||
}
|
||||
body {
|
||||
background-color: #3c3836; /**/
|
||||
margin: 0 auto;
|
||||
|
Reference in New Issue
Block a user