Skip to content

Commit

Permalink
Adding Homepage to the market. (#53)
Browse files Browse the repository at this point in the history
* Initial commit for homepage.

* icons fix.
  • Loading branch information
BillyDas authored Oct 13, 2023
1 parent 7971781 commit e884e15
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 0 deletions.
69 changes: 69 additions & 0 deletions servapps/Homepage/cosmos-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{
"cosmos-installer": {
"form": [
{
"name": "customIcons",
"label": "Where do you want to store your custom icons?",
"initialValue": "{DefaultDataPath}/icons",
"type": "text"
}
]
},
"minVersion": "3.3",
"services": {
"{ServiceName}": {
"image": "ghcr.io/gethomepage/homepage:latest",
"container_name": "{ServiceName}",
"restart": "unless-stopped",
"UID": 1000,
"GID": 1000,
"environment": [
"PUID=1000",
"PGID=1000",
"TZ=auto"
],
"labels": {
"cosmos-force-network-secured": "true",
"cosmos-auto-update": "true",
"cosmos-icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/Homepage/icon.png"
},
"volumes": [
{
"source": "{ServiceName}-config",
"target": "/app/config",
"type": "volume"
},
{
"source": "/var/run/docker.sock",
"target": "/var/run/docker.sock",
"type": "bind"
}
{if Context.customIcons}
, {
"source": "{Context.customIcons}",
"target": "/app/public/icons",
"type": "bind"
}
{/if}
],
"routes": [
{
"name": "{ServiceName}",
"description": "Expose {ServiceName} to the web",
"useHost": true,
"target": "https://{ServiceName}:3000",
"mode": "SERVAPP",
"Timeout": 14400000,
"ThrottlePerMinute": 12000,
"BlockCommonBots": true,
"SmartShield": {
"Enabled": true
},
"AcceptInsecureHTTPSTarget": true,
"AuthEnabled": true,
"AuthAdmin": false
}
]
}
}
}
9 changes: 9 additions & 0 deletions servapps/Homepage/description.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "Homepate",
"longDescription": "<p>A modern, fully static, fast, secure fully proxied, highly customizable application dashboard with integrations for over 100 services and translations into multiple languages. Easily configured via YAML files or through docker label discovery..</p><p>Heimdall is compatible with various platforms, including Windows, Linux, MacOS, and it supports Docker, making it a highly versatile tool for various environments.</p>",
"description": "A highly customizable application dashboard with integrations for over 100 services and translations into multiple languages.",
"tags": ["dashboard", "home", "icons", "open-source", "self-hosted", "web-based applications", "services", "central hub", "multi-user", "windows", "linux", "macos", "docker"],
"repository": "https://github.com/gethomepage/homepage",
"image": "https://github.com/gethomepage/homepage/pkgs/container/homepage",
"supported_architectures": ["amd64", "arm64"]
}
Binary file added servapps/Homepage/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added servapps/Homepage/screenshots/1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e884e15

Please sign in to comment.