fix(console): comprehensive TUI rendering fixes
- Fix Enter key detection: handle multiple Enter key formats (\n, \r, \r\n) - Reduce flickering: lower render frequency from 60 FPS to 30 FPS - Fix menu bar visibility: re-render menu bar after content to prevent overwriting - Fix content positioning: explicit line positioning for categories and commands - Fix line shifting: clear lines before writing, control newlines manually - Limit visible items: prevent overflow with maxVisibleCategories/Commands - Improve CPU usage: increase sleep interval when no events processed This fixes: - Enter key not working for selection - Strong flickering of the application - Menu bar not visible or being overwritten - Top half of selection list not displayed - Lines being shifted/misaligned
This commit is contained in:
19
deployment/ansible/playbooks/setup/ssl.yml
Normal file
19
deployment/ansible/playbooks/setup/ssl.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
---
|
||||
# Setup Let's Encrypt SSL Certificates via Traefik
|
||||
# Wrapper Playbook for traefik role ssl tasks
|
||||
- hosts: production
|
||||
gather_facts: yes
|
||||
become: no
|
||||
vars:
|
||||
# ssl_domains and acme_email are defined in group_vars/production.yml
|
||||
# Can be overridden via -e flag if needed
|
||||
traefik_ssl_domains: "{{ ssl_domains | default([gitea_domain, app_domain]) }}"
|
||||
tasks:
|
||||
- name: Include traefik ssl tasks
|
||||
ansible.builtin.include_role:
|
||||
name: traefik
|
||||
tasks_from: ssl
|
||||
tags:
|
||||
- traefik
|
||||
- ssl
|
||||
- certificates
|
||||
Reference in New Issue
Block a user