This commit is contained in:
pi ha 2025-03-26 18:11:13 +01:00
parent a002fcdaf3
commit c81ff6feaf
11 changed files with 1736 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
logs/**

18
config/bookmarks.yaml Normal file
View file

@ -0,0 +1,18 @@
---
# For configuration options and examples, please see:
# https://gethomepage.dev/configs/bookmarks
- Developer:
- Github:
- abbr: GH
href: https://github.com/
- Social:
- Reddit:
- abbr: RE
href: https://reddit.com/
- Entertainment:
# - YouTube:
# - abbr: YT
# href: https://youtube.com/

0
config/custom.css Normal file
View file

0
config/custom.js Normal file
View file

10
config/docker.yaml Normal file
View file

@ -0,0 +1,10 @@
---
# For configuration options and examples, please see:
# https://gethomepage.dev/configs/docker/
# my-docker:
# host: 127.0.0.1
# port: 2375
# my-docker:
# socket: /var/run/docker.sock

2
config/kubernetes.yaml Normal file
View file

@ -0,0 +1,2 @@
---
# sample kubernetes config

1628
config/logs/homepage.log Normal file

File diff suppressed because it is too large Load diff

44
config/services.yaml Normal file
View file

@ -0,0 +1,44 @@
---
# For configuration options and examples, please see:
# https://gethomepage.dev/configs/services/
- Usługi domowe:
- Wiki:
href: https://wiki.okit.pl
description: Wiki domowe
- Home Assistant:
href: https://.oki.pl
description: Sterowanie domem
- Zdjęcia:
href: https://immich.okit.pl/
description: Nasze zdjęcia
- Programowanie:
- VS code:
href: https://code-server.okit.pl/
description: vs code-server
- Git:
href: https://forgejo.okit.pl/
description: forgejo git server
- Monitoring:
- Grafana:
href: https://grafana.okit.pl/
description: Dashboardy Grafany
- Prometheus:
href: https://prometheus.okit.pl/
description: Zbieranie dancyh
- Sieciowe:
- Router:
href: https://router.okit.pl/
description: Głowny domowy router sieciowy
- Access point:
href: https://ap.okit.pl/
description: Model światłowodowy
- PiHole:
href: https://pihole.okit.pl/
description: Bloker reklam i serwer DNS
- Zigbee:
href: https://zigbee.okit.pl/
description: Sieć zigbee

7
config/settings.yaml Normal file
View file

@ -0,0 +1,7 @@
---
# For configuration options and examples, please see:
# https://gethomepage.dev/configs/settings/
providers:
openweathermap: openweathermapapikey
weatherapi: weatherapiapikey

12
config/widgets.yaml Normal file
View file

@ -0,0 +1,12 @@
---
# For configuration options and examples, please see:
# https://gethomepage.dev/configs/info-widgets/
- resources:
cpu: true
memory: true
disk: /
- search:
provider: duckduckgo
target: _blank

14
docker-compose.yml Normal file
View file

@ -0,0 +1,14 @@
services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
ports:
- 3033:3000
volumes:
- /home/pi/homepage/config:/app/config # Make sure your local config directory exists
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations, see alternative methods
environment:
HOMEPAGE_ALLOWED_HOSTS: home.okit.pl,192.168.31.5:3033 # required, may need port. See gethomepage.dev/installation/#homepage_allowed_hosts
# PUID: 1000
# PGID: 1000
restart: unless-stopped