-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is part 1 of ? in terms of rewriting the wiki to have more information and also be more clear and concise. There might be some broken pages here and there, but it shouldn't be too many.
- Loading branch information
1 parent
79a314e
commit e70c83f
Showing
40 changed files
with
510 additions
and
246 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export default function YouTube ({ id } : { id : string }){ | ||
return ( | ||
<div> | ||
<iframe | ||
className="aspect-video w-full" | ||
src={"https://www.youtube.com/embed/" + id} | ||
title="YouTube Video Player" | ||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" | ||
></iframe> | ||
</div> | ||
); | ||
}; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import { Callout, Card, Cards } from 'nextra/components' | ||
import Image from 'next/image' | ||
import { SiGnomeTerminal, SiDocker, SiGoogleCloudStorage } from '@icons-pack/react-simple-icons' | ||
|
||
## What is Kavita? | ||
Kavita is an open-source, self-hosted digital library management system primarily designed for managing and reading comics, manga, and ebooks. It is built to provide a streamlined and user-friendly experience for organizing and accessing a personal collection of digital reading materials. | ||
|
||
### Core Features | ||
|
||
- **[Library Management](guides/admin-settings/libraries/)**: Organize your digital reading materials into a library with custom tags and filters. | ||
- **Synchronized Reading**: Read your digital materials directly in your browser with a customizable reading experience. | ||
- **[Custom Filters](guides/features/filtering/)**: Create custom filters to organize your library based on your own criteria. | ||
- **[User Management](guides/admin-settings/users/)**: Create multiple users with different permissions to access your library, each with their own progress tracking. | ||
|
||
|
||
## System Requirements | ||
|
||
Kavita is built with Microsoft [.NET 8.0](https://dotnet.microsoft.com/en-us/) and [Angular 18](https://v18.angular.dev/). Each of these technologies have their own requirements, but most modern systems should be fine. | ||
|
||
- [.NET Framework requirements](https://github.com/dotnet/core/blob/main/release-notes/8.0/supported-os.md) | ||
- [Angular requirements](https://v18.angular.dev/reference/versions#browser-support) | ||
|
||
All Kavita builds are fully self-contained. This means there is no prerequisite software needed. | ||
|
||
Users have reported running the app on as little as a single-core 1Ghz CPU and 256MB RAM. | ||
|
||
The only requirement Kavita has is the need for a CPU that supports SSE4.2 extensions. This is because of the upstream library `NetVIPS`. [See the FAQ](../troubleshooting/faq.mdx#q-what-is-the-netvips-dependency-and-what-does-it-mean-if-i-cant-run-it) for how to work around it. | ||
|
||
## Demo | ||
|
||
If you want to try out a demo of Kavita first before installing, you can find it at [https://demo.kavitareader.com/](https://demo.kavitareader.com/login?apiKey=9003cf99-9213-4206-a787-af2fe4cc5f1f). | ||
|
||
## Installation methods | ||
|
||
There are a few ways to get setup running Kavita depending on what environment you have: | ||
|
||
<Cards> | ||
<Cards.Card | ||
title="Native Binary" | ||
href="/installation/native" | ||
/> | ||
<Cards.Card | ||
title="Install With Docker" | ||
href="/installation/docker" | ||
/> | ||
<Cards.Card | ||
title="Install On NAS" | ||
href="/installation/nas" | ||
/> | ||
</Cards> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
export default { | ||
"general": "General", | ||
"users": "Users", | ||
"libraries": "Libraries", | ||
"media": "Media", | ||
"email": "Email", | ||
"users": "Users", | ||
"libraries": "Libraries", | ||
"tasks": "Tasks", | ||
"statistics": "Statistics", | ||
"system": "System", | ||
"statistics": "Statistics", | ||
"mediaissues": "Media Issues", | ||
"kavita+": "Kavita+" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { Callout } from 'nextra/components' | ||
|
||
### Media Issues | ||
|
||
<Callout type="info" emoji="ℹ️"> | ||
This list does not automatically clear. Once you fix the files, press the Clear Alerts button. | ||
</Callout> | ||
|
||
Any problems that Kavita detects with your files will show up here. | ||
|
||
See [Common Media Issues](../../troubleshooting/media-errors.mdx) for some examples of general problems and how to fix them. | ||
|
||
#### Scrobble Issues | ||
|
||
Server-wide dashboard of any series that is having problems scrobbling to an external provider. This list will allow you to go directly to a series so you can match it with the properly linked series page with an external provider. | ||
|
||
Series usually appear here if they are named wrong and can't match to the provider, or if they just don't exist yet on the provider. |
Oops, something went wrong.