mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2025-08-06 07:13:39 +00:00
Update css and README
This commit is contained in:
8
Makefile
8
Makefile
@@ -13,13 +13,13 @@ help:
|
|||||||
@echo
|
@echo
|
||||||
.PHONY: help
|
.PHONY: help
|
||||||
|
|
||||||
## backend-server: Build and run the backend from source
|
## backend: Build and run the backend from source
|
||||||
backend-server:
|
backend:
|
||||||
@cd backend && go run .
|
@cd backend && go run .
|
||||||
.PHONY: server
|
.PHONY: server
|
||||||
|
|
||||||
|
|
||||||
## frontend-server: Build and run the frontend from source
|
## frontend: Build and run the frontend from source
|
||||||
frontend-server:
|
frontend:
|
||||||
@npx vue-cli-service serve
|
@npx vue-cli-service serve
|
||||||
.PHONY: server
|
.PHONY: server
|
||||||
|
17
README.md
17
README.md
@@ -1,8 +1,21 @@
|
|||||||
# rfd-fyi
|
# 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
|
```sh
|
||||||
make frontend
|
make frontend
|
||||||
make backend
|
|
||||||
```
|
```
|
||||||
|
@@ -4,6 +4,13 @@
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: black;
|
background-color: black;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
background-color: #282828; /**/
|
||||||
|
color: #ebdbb2; /**/
|
||||||
|
min-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.thead {
|
.thead {
|
||||||
@@ -163,10 +170,6 @@ h6 {
|
|||||||
font-family: "PT Sans Narrow", sans-serif;
|
font-family: "PT Sans Narrow", sans-serif;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
html {
|
|
||||||
background-color: #282828; /**/
|
|
||||||
color: #ebdbb2; /**/
|
|
||||||
}
|
|
||||||
body {
|
body {
|
||||||
background-color: #3c3836; /**/
|
background-color: #3c3836; /**/
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
Reference in New Issue
Block a user