-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* aint much but honest work * werkin it * 😩 * Kinda reworked scanner (#7) * updating scanner, removed book_count from series * scanner updates, api tweaks, version updates * wip: working on scanner and other misc fixes * tiny progress * Migrate from SeaORM to Prisma (#8) * werkin * meh * major work towards seaorm -> prisma migration * added prisma commands to scripts * reworked opds api * werkin * did some things * Migration mostly complete
- Loading branch information
1 parent
a709ef3
commit 079d139
Showing
125 changed files
with
5,633 additions
and
4,842 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
github: aaronleopold | ||
ko_fi: aaronleop | ||
# github: aaronleopold | ||
ko_fi: aaronleop |
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,5 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npx lint-staged | ||
pnpm run server:fmt | ||
npx lint-staged |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
node_modules | ||
.svelte-kit | ||
build | ||
server | ||
server* |
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,8 +1,8 @@ | ||
{ | ||
"semi": true, | ||
"useTabs": true, | ||
"tabWidth": 4, | ||
"tabWidth": 2, | ||
"singleQuote": true, | ||
"trailingComma": "all", | ||
"printWidth": 100 | ||
} | ||
} |
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,14 @@ | ||
# Contributing | ||
|
||
You can contribute by opening new issues or PRs. Please do not drop random PRs without talking with me first, please follow these steps: | ||
|
||
1. Check to see if an issue already exists relevant to your feature/topic | ||
2. Create an issue (if an issue does not already exist) and express interest in working it | ||
3. Create a fork of the repository. | ||
4. Create a new feature branch from `develop`. | ||
5. Add appropiate documentation to public items. | ||
6. Ensure you have your code formatter properly configured. | ||
7. Once you add your contributions, create a PR from your feature branch into `develop` - _not_ `main`. | ||
8. Be sure to pull in new changes **before** making the PR. | ||
|
||
Thanks for contributing to my project!! |
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
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 |
---|---|---|
@@ -1,45 +1,51 @@ | ||
{ | ||
"name": "frontend", | ||
"private": true, | ||
"version": "0.0.0", | ||
"version": "0.0.1", | ||
"homepage": ".", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc && vite build", | ||
"preview": "vite preview --port 3000" | ||
}, | ||
"dependencies": { | ||
"@chakra-ui/react": "^1.8.5", | ||
"@emotion/react": "^11", | ||
"@chakra-ui/react": "^1.8.7", | ||
"@emotion/react": "^11.8.2", | ||
"@emotion/styled": "^11", | ||
"axios": "^0.26.0", | ||
"@hookform/resolvers": "^2.8.8", | ||
"axios": "^0.26.1", | ||
"clsx": "^1.1.1", | ||
"framer-motion": "^6", | ||
"history": "^5.3.0", | ||
"nprogress": "^0.2.0", | ||
"phosphor-react": "^1.4.0", | ||
"react": "^17.0.2", | ||
"react-dom": "^17.0.2", | ||
"phosphor-react": "^1.4.1", | ||
"pluralize": "^8.0.0", | ||
"react": "^18.0.0", | ||
"react-dom": "^18.0.0", | ||
"react-error-boundary": "^3.1.4", | ||
"react-query": "^3.34.16", | ||
"react-router-dom": "6", | ||
"react-hook-form": "^7.28.1", | ||
"react-hot-toast": "^2.2.0", | ||
"react-query": "^3.34.19", | ||
"react-router-dom": "^6.2.2", | ||
"vite-plugin-package-version": "^1.0.2", | ||
"zustand": "^3.7.0" | ||
"zod": "^3.14.3", | ||
"zustand": "^3.7.1" | ||
}, | ||
"devDependencies": { | ||
"@tailwindcss/aspect-ratio": "^0.4.0", | ||
"@tailwindcss/forms": "^0.4.0", | ||
"@tailwindcss/forms": "^0.5.0", | ||
"@tailwindcss/typography": "^0.5.2", | ||
"@types/node": "^17.0.21", | ||
"@types/node": "^17.0.23", | ||
"@types/nprogress": "^0.2.0", | ||
"@types/react": "^17.0.33", | ||
"@types/react-dom": "^17.0.10", | ||
"@types/pluralize": "^0.0.29", | ||
"@types/react": "^17.0.43", | ||
"@types/react-dom": "^17.0.14", | ||
"@vitejs/plugin-react": "^1.0.7", | ||
"autoprefixer": "^10.4.2", | ||
"postcss": "^8.4.7", | ||
"autoprefixer": "^10.4.4", | ||
"postcss": "^8.4.12", | ||
"tailwind-scrollbar-hide": "^1.1.7", | ||
"tailwindcss": "^3.0.23", | ||
"typescript": "^4.5.4", | ||
"vite": "^2.8.0" | ||
"typescript": "^4.6.3", | ||
"vite": "^2.8.6" | ||
} | ||
} | ||
} |
Oops, something went wrong.