docs first attempt

This commit is contained in:
raiper34
2024-09-01 17:21:49 +02:00
parent c365d8be90
commit 2a01e7e09a
18 changed files with 25540 additions and 16 deletions
View File
+6
View File
@@ -0,0 +1,6 @@
# Spooty
> A self-hosted Spotify downloader
[GitHub](https://github.com/Raiper34/spooty)
[Get Started](docker.md)
+1
View File
@@ -0,0 +1 @@
Content
+5
View File
@@ -0,0 +1,5 @@
- Getting started
- [Using Docker](docker.md)
- [Build from source](source.md)
- [Changelog](CHANGELOG.md)
- [License](LICENSE.md)
+27
View File
@@ -0,0 +1,27 @@
{
"copyFilesSettings": {
"whenFileExists": "overwrite"
},
"copyFiles": [
{
"from": "*",
"to": "../dist/docs"
},
{
"from": "../assets",
"to": "../dist/docs"
},
{
"from": "../README.md",
"to": "../dist/docs/README.md"
},
{
"from": "../LICENSE.md",
"to": "../dist/docs/LICENSE.md"
},
{
"from": "../CHANGELOG.md",
"to": "../dist/docs/CHANGELOG.md"
}
]
}
+3
View File
@@ -0,0 +1,3 @@
# Docker
TODO
+29
View File
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Spooty',
repo: 'https://github.com/Raiper34/spooty',
coverpage: true,
loadSidebar: true,
loadNavbar: false,
search: 'auto',
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-typescript.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-json.min.js"></script>
</body>
</html>
+3
View File
@@ -0,0 +1,3 @@
# Build from source
TODO