Added logo

This commit is contained in:
Jordan Roher 2023-12-14 15:59:36 -08:00
parent 2f4aca37ef
commit 6a31410a3d
6 changed files with 5 additions and 55 deletions

3
.gitignore vendored
View File

@ -1,5 +1,4 @@
node_modules
.DS_Store
dist
dist-ssr
public
dist-ssr

View File

@ -1,48 +0,0 @@
[
{
"category": "Services",
"services": [
{
"name": "Archivebox",
"uri": "https://archivebox.mywebsite.com",
"description": "Backup webpages",
"icon": "/icons/archivebox.jpg"
},
{
"name": "Authelia",
"uri": "https://auth.mywebsite.com",
"description": "Authentication",
"icon": "/icons/authelia.png"
},
{
"name": "Calibre",
"uri": "https://calibre.mywebsite.com",
"description": "eBook library",
"icon": "/icons/calibre.png"
}
]
},
{
"category": "Devices",
"services": [
{
"name": "Router",
"uri": "http://192.168.1.1/",
"description": "Netgear Orbi",
"icon": "/icons/router.png"
},
{
"name": "Home Assistant",
"uri": "http://homeassistant.local:8123/",
"description": "Home automation",
"icon": "/icons/home-assistant.svg"
},
{
"name": "Synology",
"uri": "http://synology:5000",
"description": "Network storage",
"icon": "/icons/synology.png"
}
]
}
]

View File

@ -1,9 +1,9 @@
{
"name": "starbase-80",
"displayName": "Starbase 80",
"homepage": "https://github.com/notclickable-jordan/starbase-80",
"homepage": "https://www.starbase80.dev/",
"repository": {
"url": "https://github.com/notclickable-jordan/starbase-80"
"url": "https://github.com/notclickable-jordan/starbase-80/"
},
"version": "1.3.0",
"type": "module",
@ -12,7 +12,6 @@
"build": "tsc && vite build",
"serve": "vite preview",
"start": "node start.js",
"stop": "pkill -f 'vite preview'",
"html": "html-minifier --remove-comments --collapse-whitespace --input-dir ./dist --output-dir ./dist --file-ext html",
"replace": "npm run replace:script",
"replace:script": "replace-in-file --configFile replace-script.cjs"

BIN
public/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

View File

@ -11,7 +11,7 @@
{
"name": "Bind mount",
"uri": "https://github.com/notclickable-jordan/docker-symphony",
"description": "to /app/src/config/config.json",
"description": "/app/src/config/config.json",
"icon": "docker"
},
{

View File

@ -20,7 +20,7 @@ async function renderHomePage() {
const browser = await puppeteer.launch({
headless: true,
args: ["--no-sandbox", "--disable-setuid-sandbox"],
executablePath: "chromium",
executablePath: "chromium", // Remove this when running locally
});
const page = await browser.newPage();