2020-12-24 13:01:21 +01:00
# Tachidesk
2021-01-21 21:57:16 +01:00
A free and open source manga reader than runs extensions built for [Tachiyomi ](https://tachiyomi.org/ ) which runs on desktop operating systems.
2020-12-24 13:01:21 +01:00
This project has two components:
2020-12-24 13:04:07 +01:00
1. **server:** contains some of the original Tachiyomi code and serves a REST API
2. **webUI:** A react project that works with the server to do the presentation
2020-12-24 13:01:21 +01:00
## How do I run the thing?
2021-01-21 21:53:53 +01:00
#### Running pre-built jar packages
Download the latest (or a working more stable older) release from [the repo branch ](https://github.com/AriaMoradi/Tachidesk/tree/repo ) or obtain it from [the releases section ](https://github.com/AriaMoradi/Tachidesk/releases ).
Double click on the jar file or run `java -jar tachidesk-latest.jar` or `java -jar tachidesk-r0xxx.jar`
The server will be running on `http://localhost:4567` open this url in your browser.
## Building from source
### Get Android stubs jar
2021-01-19 19:10:44 +01:00
#### Manual download
Download [android.jar ](https://raw.githubusercontent.com/AriaMoradi/Tachidesk/android-jar/android.jar ) and put it under `AndroidCompat/lib` .
#### Building from source(needs `bash`, `curl`, `base64`, `zip` to work)
2021-01-21 21:53:53 +01:00
Run `scripts/getAndroid.sh` from project's root directory to download and rebuild the jar file from Google's repository.
2021-01-20 00:47:43 +01:00
### building the jar
2021-01-21 21:53:53 +01:00
Run `./gradlew :server:shadowJar` the resulting built jar file will be `server/build/server-1.0-all.jar` .
2021-01-20 00:47:43 +01:00
## running for development purposes
2021-01-21 21:53:53 +01:00
### `server` module
Run `./gradlew :server:run -x :webUI:copyBuild --stacktrace` to run the server
### `webUI` module
How to do it is described in `webUI/react/README.md` but for short,
2020-12-24 20:06:39 +01:00
first cd into `webUI/react` then run `yarn` to install the node modules(do this only once)
2020-12-24 13:16:42 +01:00
then `yarn start` to start the client if a new browser window doesn't start automatically,
2021-01-21 21:53:53 +01:00
then open `http://127.0.0.1:3000` in a modern browser. This is a `creat-react-app` project/
and supports HMR and other goodies it provides.
2020-12-24 13:01:21 +01:00
2021-01-21 21:53:53 +01:00
## Is this application usable? Should I test it?
2020-12-25 01:07:59 +01:00
Checkout [the state of project ](https://github.com/AriaMoradi/Tachidesk/issues/2 ) to see what's implemented.
2020-12-25 01:05:23 +01:00
2021-01-21 11:11:03 +01:00
## Credit
2021-01-21 11:28:49 +01:00
The `AndroidCompat` module and `scripts/getAndroid.sh` was originally developed by [@null-dev ](https://github.com/null-dev ) for [TachiWeb-Server ](https://github.com/Tachiweb/TachiWeb-server ) and is licensed under `Apache License Version 2.0` .
2021-01-21 11:12:17 +01:00
Parts of [tachiyomi ](https://github.com/tachiyomiorg/tachiyomi ) is adopted into this codebase, also licensed under `Apache License Version 2.0` .
2021-01-21 11:11:03 +01:00
2020-12-24 13:01:21 +01:00
## License
2021-01-21 11:28:15 +01:00
Copyright (C) 2020-2021 Aria Moradi and contributors
2020-12-24 13:01:21 +01:00
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
2021-01-03 00:46:17 +01:00
file, You can obtain one at http://mozilla.org/MPL/2.0/.