Skip to content

Commit

Permalink
Jellystat (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
di5cord20 authored Oct 15, 2023
1 parent 3e29530 commit 1a9dc55
Show file tree
Hide file tree
Showing 7 changed files with 119 additions and 0 deletions.
110 changes: 110 additions & 0 deletions servapps/Jellystat/cosmos-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
{
"cosmos-installer": {
"form": [
{
"name": "adminOnly",
"label": "Do you want to make this service admin only?",
"initialValue": false,
"type": "checkbox"
},
{
"name": "jellyfin",
"name-container": "jellyfin-name",
"label": "Where is your Jellyfin instance? (leave blank if none)",
"type": "container"
}
]
},
"minVersion": "0.10.3",
"services": {
"{ServiceName}-db": {
"image": "postgres:15.2",
"container_name": "{ServiceName}-db",
"restart": "unless-stopped",
"UID": 1000,
"GID": 1000,
"environment": [
"PUID=1000",
"PGID=1000",
"TZ=auto",
"POSTGRES_DB=jfstat",
"POSTGRES_USER=postgres",
"POSTGRES_PASSWORD={Passwords.0}"
],
"labels": {
"cosmos-force-network-secured": "true",
"cosmos-auto-update": "true",
"cosmos-icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/Jellystat/icon.png"
},
"networks": {
"{ServiceName}-databases": {}
},
"volumes": [
{
"source": "{ServiceName}-postgres-data",
"target": "/var/lib/postgresql/data",
"type": "volume"
}
]
},
"{ServiceName}": {
"image": "cyfershepard/jellystat:latest",
"container_name": "{ServiceName}",
"restart": "unless-stopped",
"environment": [
"TZ=auto",
"POSTGRES_USER=postgres",
"POSTGRES_PASSWORD={Passwords.0}",
"POSTGRES_IP={ServiceName}-db",
"POSTGRES_PORT=5432",
"JWT_SECRET={Passwords.0}123456748"
],
"labels": {
"cosmos-force-network-secured": "true",
"cosmos-auto-update": "true",
"cosmos-icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/Jellystat/icon.png"
},
"networks": {
"{ServiceName}-databases": {}
},
"depends_on": [
"{ServiceName}-db"
],
"volumes": [
{
"source": "{ServiceName}-backup-data",
"target": "/app/backend/backup-data",
"type": "volume"
}
],
"routes": [
{
"name": "{ServiceName}",
"description": "Expose {ServiceName} to the web",
"useHost": true,
"target": "http://{ServiceName}:3000",
"mode": "SERVAPP",
"Timeout": 14400000,
"ThrottlePerMinute": 12000,
"BlockCommonBots": true,
"SmartShield": {
"Enabled": true
},
"AuthEnabled": true
{if Context.adminOnly}
,
"AuthAdmin": true
{/if}
}
],
"links": [
{if Context.jellyfin}
"{Context.jellyfin-name}"
{/if}
]
}
},
"networks": {
"{ServiceName}-databases": {}
}
}
9 changes: 9 additions & 0 deletions servapps/Jellystat/description.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "Jellystat",
"description": "Jellystat is a free and open source Statistics App for Jellyfin! (This project is still in development - expect some weirdness)",
"longDescription": "<p>Think of Jellystat as a Jellyfin version of Tautulli for Plex</p>",
"tags": ["media", "stats", "library", "open-source", "self-hosted", "web application", "jellyfin", "media content", "windows", "linux", "macos", "docker"],
"repository": "https://github.com/CyferShepard/Jellystat",
"image": "https://hub.docker.com/r/cyfershepard/jellystat",
"supported_architectures": ["amd64", "arm64"]
}
Binary file added servapps/Jellystat/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/Jellystat/screenshots/1.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/Jellystat/screenshots/2.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/Jellystat/screenshots/3.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/Jellystat/screenshots/4.png
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 1a9dc55

Please sign in to comment.