Update README.md to provide a comprehensive overview of the ScriptShare platform, including features, tech stack, setup instructions, admin capabilities, and contribution guidelines.

This commit is contained in:
2025-08-12 22:31:26 +01:00
parent 978b9b26bc
commit aa10ea0b26
64 changed files with 12998 additions and 2 deletions

30
index.html Normal file
View File

@ -0,0 +1,30 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ScriptShare - Bash Script Library</title>
<meta name="description" content="A community-driven platform for discovering, sharing, and collaborating on powerful bash scripts for system administration, automation, and development." />
<meta name="keywords" content="bash scripts, shell scripts, automation, system administration, devops, linux, unix" />
<meta name="author" content="ScriptShare Community" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://scriptshare.com/" />
<meta property="og:title" content="ScriptShare - Bash Script Library" />
<meta property="og:description" content="A community-driven platform for discovering, sharing, and collaborating on powerful bash scripts." />
<meta property="og:image" content="https://scriptshare.com/og-image.jpg" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://scriptshare.com/" />
<meta property="twitter:title" content="ScriptShare - Bash Script Library" />
<meta property="twitter:description" content="A community-driven platform for discovering, sharing, and collaborating on powerful bash scripts." />
<meta property="twitter:image" content="https://scriptshare.com/og-image.jpg" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>