App-GitKtti
view release on metacpan or search on metacpan
docs/index.html view on Meta::CPAN
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitKtti⢠- Git Flow Made Simple</title>
<meta name="description" content="GitKtti⢠is a powerful collection of Perl scripts designed to simplify Git Flow workflow for developers">
<link rel="icon" type="image/png" href="assets/gitktti_logo.png">
<link rel="apple-touch-icon" href="assets/gitktti_logo.png">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
@keyframes glow {
0% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.4); }
50% { box-shadow: 0 0 30px rgba(102, 126, 234, 0.8); }
100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.4); }
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideInLeft {
from {
opacity: 0;
transform: translateX(-50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes slideInRight {
from {
opacity: 0;
transform: translateX(50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes starfield {
0% { transform: translateY(0) rotate(0deg); }
100% { transform: translateY(-100vh) rotate(360deg); }
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
docs/index.html view on Meta::CPAN
.shooting-star:nth-child(even) {
animation-delay: -2s;
animation-duration: 5s;
}
.shooting-star:nth-child(3n) {
animation-delay: -3s;
animation-duration: 3.5s;
}
@keyframes shootingStar {
0% {
opacity: 0;
transform: translateX(-100px) translateY(50px);
}
10% {
opacity: 1;
}
90% {
opacity: 1;
}
100% {
opacity: 0;
transform: translateX(calc(100vw + 100px)) translateY(-200px);
}
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
}
header {
background: rgba(10, 10, 10, 0.8);
backdrop-filter: blur(20px);
padding: 1.5rem 0;
border-bottom: 1px solid rgba(102, 126, 234, 0.3);
position: sticky;
top: 0;
z-index: 100;
animation: slideInLeft 1s ease-out;
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo-container {
display: flex;
align-items: center;
gap: 1rem;
}
.git-logo {
width: 50px;
height: 50px;
background: url('assets/gitktti_logo.png') center/contain no-repeat;
filter: drop-shadow(0 0 15px rgba(240, 101, 67, 0.5));
transition: all 0.3s ease;
}
.git-logo:hover {
transform: scale(1.1) rotate(5deg);
filter: drop-shadow(0 0 25px rgba(240, 101, 67, 0.8));
}
.logo {
font-size: 2.5rem;
font-weight: 800;
color: #667eea;
text-decoration: none;
text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
transition: all 0.3s ease;
}
.logo:hover {
transform: scale(1.05);
text-shadow: 0 0 30px rgba(102, 126, 234, 0.8);
}
.hero {
text-align: center;
padding: 8rem 0;
color: white;
position: relative;
animation: fadeInUp 1.5s ease-out;
}
.hero-logo {
width: 150px;
height: 150px;
background: url('assets/gitktti_logo.png') center/contain no-repeat;
margin: 0 auto 2rem;
filter: drop-shadow(0 0 30px rgba(240, 101, 67, 0.6));
animation: float 4s ease-in-out infinite;
}
.hero h1 {
font-size: 5rem;
margin-bottom: 1rem;
text-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
background: linear-gradient(45deg, #667eea, #764ba2, #ff6b6b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: float 6s ease-in-out infinite;
font-weight: 900;
letter-spacing: -2px;
}
.hero .subtitle {
font-size: 2rem;
margin-bottom: 2rem;
opacity: 0.9;
color: #667eea;
text-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
animation: slideInLeft 1.5s ease-out 0.5s both;
}
.hero .tagline {
font-size: 1.4rem;
margin-bottom: 4rem;
opacity: 0.8;
max-width: 800px;
margin-left: auto;
margin-right: auto;
animation: slideInRight 1.5s ease-out 1s both;
}
.cta-button {
display: inline-block;
background: linear-gradient(45deg, #667eea, #764ba2);
color: white;
padding: 20px 40px;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
font-size: 1.2rem;
transition: all 0.4s ease;
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
border: 2px solid transparent;
position: relative;
overflow: hidden;
animation: glow 3s ease-in-out infinite;
}
.cta-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
docs/index.html view on Meta::CPAN
}
`;
// Ajouter l'animation personnalisée au document
const style = document.createElement('style');
style.textContent = keyframes;
document.head.appendChild(style);
// Appliquer l'animation personnalisée avec durée aléatoire
const duration = 3 + Math.random() * 3; // Entre 3 et 6 secondes
shootingStar.style.animation = `${animationName} ${duration}s linear infinite`;
shootingStar.style.animationDelay = Math.random() * 8 + 's';
starsContainer.appendChild(shootingStar);
}
}
// Intersection Observer for animations
function setupScrollAnimations() {
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.animationPlayState = 'running';
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
}, { threshold: 0.1 });
document.querySelectorAll('.feature-card, .alias-item, .workflow-step').forEach(el => {
el.style.opacity = '0';
el.style.transform = 'translateY(30px)';
el.style.transition = 'all 0.6s ease';
observer.observe(el);
});
}
document.addEventListener('DOMContentLoaded', () => {
createStars();
setupScrollAnimations();
});
</script>
<body>
<header>
<div class="container">
<div class="header-content">
<div class="logo-container">
<div class="git-logo"></div>
<a href="https://github.com/saumon/gitktti" class="logo">GitKttiâ¢</a>
</div>
</div>
</div>
</header>
<section class="hero">
<div class="container">
<div class="hero-logo"></div>
<h1>GitKttiâ¢</h1>
<p class="subtitle">Git Flow Made Simple</p>
<p class="tagline">A modern CPAN-ready collection of tools designed to streamline your Git Flow workflow</p>
<a href="https://github.com/saumon/gitktti" class="cta-button"><img src="assets/github.png" alt="GitHub" style="height:1.2em; vertical-align:middle; margin-right:0.5em;">View on GitHub</a>
</div>
</section>
<div class="container">
<main class="main-content">
<section class="features">
<h2>Why GitKtti�</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">ð¿</div>
<h3>Git Flow Simplified</h3>
<p>Automates complex Git Flow operations with simple, intuitive commands. Create feature branches, hotfixes, and releases effortlessly.</p>
</div>
<div class="feature-card">
<div class="feature-icon">ð¡ï¸</div>
<h3>Safe Operations</h3>
<p>Built-in safeguards prevent accidental deletions of master/develop branches and ensure repository cleanliness before operations.</p>
</div>
<div class="feature-card">
<div class="feature-icon">ð§</div>
<h3>Interactive Interface</h3>
<p>Smart selectors and interactive prompts guide you through operations, making complex Git workflows accessible to everyone.</p>
</div>
<div class="feature-card">
<div class="feature-icon">â¡</div>
<h3>CPAN Ready</h3>
<p>Modern CPAN distribution with proper installation via <code>cpanm App::GitKtti</code>. Optional aliases available for power users.</p>
</div>
<div class="feature-card">
<div class="feature-icon">ð¯</div>
<h3>Branch Management</h3>
<p>Comprehensive branch operations including creation, renaming, deletion, and smart checkout with remote tracking support.</p>
</div>
<div class="feature-card">
<div class="feature-icon">ð·ï¸</div>
<h3>Professional Tools</h3>
<p>Complete suite with <code>gitktti-tag</code>, <code>gitktti-tests</code>, and comprehensive help system for professional development workflows.</p>
</div>
</div>
</section>
<section class="aliases-section">
<h2>Quick Reference</h2>
<div class="aliases-grid">
<div class="alias-item">
<code>kfeat</code>
<p>Create feature branch from develop</p>
</div>
<div class="alias-item">
<code>kfix</code>
<p>Create hotfix branch from master</p>
</div>
<div class="alias-item">
<code>kreal</code>
<p>Create release branch from develop</p>
</div>
<div class="alias-item">
<code>kfixend</code>
<p>Finalize and merge current branch</p>
</div>
( run in 0.572 second using v1.01-cache-2.11-cpan-df04353d9ac )