refactor: standardize port to 1999 across all files
- Updated default port from 8080 to 1999 in config, Docker, and documentation files - Modified example URLs and test commands to use new port - Ensured consistent port references in environment configs and deployment examples - Updated health check endpoints in Docker and testing scripts The port change aligns with LIV Golf port allocation standards for staging environments (5000-9999 range).
This commit is contained in:
+23
-16
@@ -20,9 +20,10 @@
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<!-- Language & Export Bar (hidden in print) -->
|
||||
<!-- Single Black Bar with Everything -->
|
||||
<div class="action-bar no-print">
|
||||
<div class="action-bar-content">
|
||||
<!-- Left: Language buttons -->
|
||||
<div class="language-toggle">
|
||||
<button
|
||||
class="lang-btn {{if eq .Lang "en"}}active{{end}}"
|
||||
@@ -30,7 +31,7 @@
|
||||
hx-target="#cv-content"
|
||||
hx-swap="innerHTML"
|
||||
hx-indicator="#loading">
|
||||
🇬🇧 English
|
||||
English
|
||||
</button>
|
||||
<button
|
||||
class="lang-btn {{if eq .Lang "es"}}active{{end}}"
|
||||
@@ -38,28 +39,34 @@
|
||||
hx-target="#cv-content"
|
||||
hx-swap="innerHTML"
|
||||
hx-indicator="#loading">
|
||||
🇪🇸 Español
|
||||
Español
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="cv-length-toggle">
|
||||
<button
|
||||
class="length-btn active"
|
||||
onclick="toggleCVLength('short')">
|
||||
{{if eq .Lang "es"}}Corto{{else}}Short{{end}}
|
||||
</button>
|
||||
<button
|
||||
class="length-btn"
|
||||
onclick="toggleCVLength('long')">
|
||||
{{if eq .Lang "es"}}Largo{{else}}Long{{end}}
|
||||
</button>
|
||||
<!-- Center: Title badges -->
|
||||
<div class="title-badges">
|
||||
<span class="title-badge">ANALYST PROGRAMMER</span>
|
||||
<span class="title-separator">|</span>
|
||||
<span class="title-badge">NODEJS + REACTJS DEVELOPER</span>
|
||||
<span class="title-separator">|</span>
|
||||
<span class="title-badge">WEB DEVELOPER</span>
|
||||
<span class="title-separator">|</span>
|
||||
<span class="title-badge">JAVA DEVELOPER</span>
|
||||
<span class="title-separator">|</span>
|
||||
<span class="title-badge">PHP DEVELOPER</span>
|
||||
</div>
|
||||
|
||||
<div class="export-actions">
|
||||
<!-- Right: Action buttons -->
|
||||
<div class="action-buttons">
|
||||
<button
|
||||
class="export-btn"
|
||||
onclick="window.print()">
|
||||
📄 {{if eq .Lang "es"}}Descargar PDF{{else}}Download PDF{{end}}
|
||||
📥 {{if eq .Lang "es"}}Descargar PDF{{else}}Download as PDF{{end}}
|
||||
</button>
|
||||
<button
|
||||
class="export-btn"
|
||||
onclick="window.print()">
|
||||
🖨️ {{if eq .Lang "es"}}Imprimir{{else}}Print Friendly{{end}}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user