mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 04:08:45 -05:00
Add detailed native installation instructions
This commit is contained in:
55
README.md
55
README.md
@@ -38,12 +38,67 @@ https://hub.docker.com/r/fallenbagel/jellyseerr
|
|||||||
|
|
||||||
### Launching Jellyseerr manually:
|
### Launching Jellyseerr manually:
|
||||||
|
|
||||||
|
#### Windows
|
||||||
|
Pre-requisites:
|
||||||
|
- Nodejs
|
||||||
|
- Yarn
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
yarn add -g win-node-env
|
||||||
yarn install
|
yarn install
|
||||||
yarn run build
|
yarn run build
|
||||||
yarn start
|
yarn start
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Linux
|
||||||
|
Pre-requisites:
|
||||||
|
- Nodejs
|
||||||
|
- Yarn
|
||||||
|
- Git
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://github.com/jellyseerr.git
|
||||||
|
yarn install
|
||||||
|
yarn run build
|
||||||
|
yarn start
|
||||||
|
```
|
||||||
|
|
||||||
|
*Systemd-service:*
|
||||||
|
* assuming jellyseerr was cloned to `/opt/`
|
||||||
|
and the environmentfile is located at `/etc/jellyseerr`
|
||||||
|
|
||||||
|
service:
|
||||||
|
```
|
||||||
|
[Unit]
|
||||||
|
Description=Jellyseerr Service
|
||||||
|
Wants=network-online.target
|
||||||
|
After=network-online.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
EnvironmentFile=/etc/jellyseerr/jellyseerr.conf
|
||||||
|
Environment=NODE_ENV=production
|
||||||
|
Type=exec
|
||||||
|
Restart=on-failure
|
||||||
|
WorkingDirectory=/opt/jellyseerr
|
||||||
|
ExecStart=/root/.nvm/versions/node/v18.7.0/bin/node dist/index.js
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
```
|
||||||
|
|
||||||
|
Environmentfile:
|
||||||
|
```
|
||||||
|
# Jellyseerr's default port is 5055, if you want to use both, change this.
|
||||||
|
# specify on which port to listen
|
||||||
|
PORT=5055
|
||||||
|
|
||||||
|
# specify on which interface to listen, by default jellyseerr listens on all interfaces
|
||||||
|
#HOST=127.0.0.1
|
||||||
|
|
||||||
|
# Uncomment if your media server is emby instead of jellyfin.
|
||||||
|
# JELLYFIN_TYPE=emby
|
||||||
|
```
|
||||||
|
|
||||||
### Packages:
|
### Packages:
|
||||||
|
|
||||||
Archlinux: [AUR](https://aur.archlinux.org/packages/jellyseerr)
|
Archlinux: [AUR](https://aur.archlinux.org/packages/jellyseerr)
|
||||||
|
|||||||
Reference in New Issue
Block a user