added apps!

This commit is contained in:
2026-02-15 08:47:15 +01:00
parent 95bc16309e
commit 0bd3f2a0e2
96 changed files with 4867 additions and 82 deletions
+56
View File
@@ -0,0 +1,56 @@
# =============================================================================
# .felhom.yml - App metadata for felhom-controller
# =============================================================================
# --- Display info (shown on dashboard) ---
display_name: "Rallly"
description: "Időpont szavazás (Doodle alternatíva)"
category: "productivity"
subdomain: "poll"
slug: "rallly"
# --- Resource hints (displayed on deploy screen) ---
resources:
mem_request: "50M"
mem_limit: "256M"
pi_compatible: true
needs_hdd: false
# --- Deploy fields (first deployment only) ---
deploy_fields:
- env_var: DOMAIN
label: "Domain"
type: domain
description: "A szerver domain neve"
locked_after_deploy: true
- env_var: SECRET_PASSWORD
label: "Titkosítási kulcs"
type: secret
generate: "hex:32"
locked_after_deploy: true
- env_var: DB_PASSWORD
label: "Adatbázis jelszó"
type: secret
generate: "password:24"
locked_after_deploy: true
# --- App info (info page content) ---
app_info:
tagline: "Időpont szavazás - Doodle alternatíva a saját szerveren"
docs_url: "https://support.rallly.co/"
use_cases:
- 'Közös időpont egyeztetés szavazással'
- 'Találkozók, események szervezése'
- 'Résztvevők regisztráció nélkül szavazhatnak'
- 'Email értesítések és emlékeztetők'
- 'Egyszerű, tiszta felület'
first_steps:
- 'Nyisd meg a poll.DOMAIN címet a böngészőben'
- 'Hozz létre egy új szavazást'
- 'Add meg a lehetséges időpontokat'
- 'Oszd meg a linket a résztvevőkkel'
+75
View File
@@ -0,0 +1,75 @@
# Rallly - Időpont szavazás (Doodle alternatíva)
# Domain: poll.${DOMAIN}
# Database: postgres
# RAM: ~50M (mem_limit: 256M) | Pi-compatible: Yes
#
# Environment variables:
# DOMAIN - Your domain (e.g., demo-felhom.eu)
# SECRET_PASSWORD - Titkosítási kulcs (auto-generated)
# DB_PASSWORD - Adatbázis jelszó (auto-generated)
services:
rallly:
image: lukevella/rallly:3.12.1
container_name: rallly
restart: unless-stopped
depends_on:
rallly-postgres:
condition: service_healthy
environment:
- TZ=Europe/Budapest
- DATABASE_URL=postgresql://rallly:${DB_PASSWORD}@rallly-postgres:5432/rallly
- SECRET_PASSWORD=${SECRET_PASSWORD}
- NEXT_PUBLIC_BASE_URL=https://poll.${DOMAIN}
networks:
- traefik-public
- rallly-internal
deploy:
resources:
limits:
memory: 256M
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "http://localhost:3000"]
interval: 30s
timeout: 5s
retries: 3
start_period: 30s
labels:
- "traefik.enable=true"
- "traefik.http.routers.rallly.rule=Host(`poll.${DOMAIN}`)"
- "traefik.http.routers.rallly.entrypoints=websecure"
- "traefik.http.routers.rallly.tls=true"
- "traefik.http.routers.rallly.tls.certresolver=letsencrypt"
- "traefik.http.services.rallly.loadbalancer.server.port=3000"
rallly-postgres:
image: postgres:16-alpine
container_name: rallly-postgres
restart: unless-stopped
environment:
- POSTGRES_USER=rallly
- POSTGRES_PASSWORD=${DB_PASSWORD}
- POSTGRES_DB=rallly
- TZ=Europe/Budapest
volumes:
- rallly_postgres_data:/var/lib/postgresql/data
networks:
- rallly-internal
deploy:
resources:
limits:
memory: 256M
healthcheck:
test: ["CMD-SHELL", "pg_isready -U rallly -d rallly"]
interval: 10s
timeout: 5s
retries: 5
start_period: 20s
volumes:
rallly_postgres_data:
networks:
traefik-public:
external: true
rallly-internal: