Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
93 changes: 93 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "gitignore",
"version": "1.0.0",
"description": "A collection of .gitignore templates",
"private": true,
"scripts": {
"build": "echo 'No build needed for static site'",
"dev": "npx serve public",
"lint": "echo 'No linting configured'"
},
"repository": {
"type": "git",
"url": "https://github.com/hanayimmee/gitignore"
},
"license": "CC0-1.0",
"dependencies": {
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^1.0.15"
}
}
110 changes: 110 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A collection of useful .gitignore templates">
<title>gitignore - A collection of .gitignore templates</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: #f5f5f5;
}
header {
background: #fff;
padding: 30px;
margin-bottom: 30px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
h1 {
color: #24292e;
margin-bottom: 10px;
}
p {
color: #586069;
margin-bottom: 15px;
}
.content {
background: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.button {
display: inline-block;
background: #0366d6;
color: #fff;
padding: 12px 24px;
text-decoration: none;
border-radius: 6px;
margin-top: 10px;
transition: background 0.2s;
}
.button:hover {
background: #0256c2;
}
footer {
margin-top: 30px;
padding: 20px;
text-align: center;
color: #586069;
}
</style>
</head>
<body>
<header>
<h1>🎯 gitignore</h1>
<p>A collection of useful .gitignore templates for various programming languages and frameworks.</p>
</header>

<div class="content">
<h2>About This Project</h2>
<p>
This is GitHub's collection of <code>.gitignore</code> file templates.
We use this list to populate the .gitignore template choosers available
in the GitHub.com interface when creating new repositories and files.
</p>

<h3>Quick Links</h3>
<p>
<a href="https://github.com/hanayimmee/gitignore" class="button" target="_blank" rel="noopener noreferrer">
View on GitHub
</a>
</p>

<h3>Resources</h3>
<ul style="margin-left: 20px; margin-top: 10px;">
<li><a href="https://git-scm.com/docs/gitignore">gitignore(5) manual page</a></li>
<li><a href="https://help.github.com/articles/ignoring-files">Ignoring Files article on GitHub Help</a></li>
<li><a href="https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#_ignoring">Pro Git book - Ignoring Files chapter</a></li>
</ul>
</div>

<footer>
<p>Licensed under <a href="https://github.com/hanayimmee/gitignore/blob/main/LICENSE">CC0-1.0</a></p>
</footer>

<!-- Vercel Speed Insights -->
<script>
window.si = window.si || function () { (window.siq = window.siq || []).push(arguments); };
</script>
<script defer src="/_vercel/speed-insights/script.js"></script>

<!-- Vercel Web Analytics -->
<script>
window.va = window.va || function () { (window.vaq = window.vaq || []).push(arguments); };
</script>
<script defer src="/_vercel/insights/script.js"></script>
</body>
</html>
25 changes: 25 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"version": 2,
"public": true,
"cleanUrls": true,
"trailingSlash": false,
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-Frame-Options",
"value": "DENY"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
}
]
}
]
}