1st
This commit is contained in:
parent
a002fcdaf3
commit
c81ff6feaf
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
logs/**
|
||||
18
config/bookmarks.yaml
Normal file
18
config/bookmarks.yaml
Normal 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
0
config/custom.css
Normal file
0
config/custom.js
Normal file
0
config/custom.js
Normal file
10
config/docker.yaml
Normal file
10
config/docker.yaml
Normal 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
2
config/kubernetes.yaml
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
# sample kubernetes config
|
||||
1628
config/logs/homepage.log
Normal file
1628
config/logs/homepage.log
Normal file
File diff suppressed because it is too large
Load diff
44
config/services.yaml
Normal file
44
config/services.yaml
Normal 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
7
config/settings.yaml
Normal 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
12
config/widgets.yaml
Normal 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
14
docker-compose.yml
Normal 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
|
||||
Loading…
Reference in a new issue