Update README.md
This commit is contained in:
parent
237aec245e
commit
dddce0052c
78
README.md
78
README.md
@ -1,4 +1,78 @@
|
||||
# Messagearr
|
||||
### Add movies to your Radarr library and check their download status through text messages
|
||||
|
||||
### Recently overhauled - new documentation coming soon!
|
||||
Add new movies to your Radarr library through text messages, and check on their download status. Plus, allow users to create temporary Jellyfin accounts that will automatically delete themselves, allowing your friends to watch and request movies without having to manually dp anything.
|
||||
|
||||
## Hosting Instructions
|
||||
|
||||
#### *Note: No matter if you choose Docker or bare metal to run Messagearr, you will need to follow the same "Configuration" instructions.*
|
||||
|
||||
#### **Docker**
|
||||
Use the following docker-compose.yaml file to run the container
|
||||
```yaml
|
||||
version: '3.3'
|
||||
services:
|
||||
messagearr:
|
||||
ports:
|
||||
- '4545:4545'
|
||||
volumes:
|
||||
- '/loca/file/path:/data'
|
||||
image: packetparker/messagearr:latest
|
||||
```
|
||||
|
||||
#### **Bare metal**
|
||||
Download the latest version of Messagearr, install the requirements from the `requirements.txt` file and run the `wsgi.py` file.
|
||||
|
||||
### Configuration
|
||||
|
||||
On the first run, Messagearr will exit and print out and error statement, it will also automatically create a `config.ini` file for you, with the necessary fields.
|
||||
|
||||
*Note: Some fields may not be created on the first run. For example, if you choose to enable the Uptime Kuma notifications, the configuration fields for that feature will only be added after you set the field to true and then re-run Messagearr*
|
||||
|
||||
An explanation of the each configuration field can be found below
|
||||
|
||||
Field | Description | Requirement
|
||||
--- | --- | ---
|
||||
SMS_SERVICE | The service for your messaging API (only twilio/telnyx currently supported) | REQUIRED
|
||||
RADARR_HOST_URL | URL for your Radarr instance | REQUIRED
|
||||
RADARR_API_KEY | API key from Radarr (can be created in Settings > General) | REQUIRED
|
||||
API_NUMBER | Phone number from your messaging service that will be sending/recieving messages | REQUIRED
|
||||
VALID_SENDERS | Comma separated list of phone numbers (international format) that are authorized to use your Messagearr instance | REQUIRED
|
||||
ROOT_FOLDER_PATH | Path for the root folder of Radarr (found in Settings > Media Management) | REQUIRED
|
||||
QUALITY_PROFILE_ID | ID for the quality profile on Radarr (in order to get a list of your quality profiles and their IDs, set the other fields first, then re-run Messagearr, the config.ini file will update with this information) | REQUIRED
|
||||
ENABLE_KUMA_NOTIFICATIONS | True/False : Whether or not to send Uptime Kuma notifications | REQUIRED
|
||||
ENABLE_JELLYFIN_TEMP_ACCOUNTS | True/False : Whether or not to enable the Jellyfin temp accounts feature | REQUIRED
|
||||
HOME_DOMAIN | Home domain to redirect to if a user sends a GET request to a POST only route | OPTIONAL
|
||||
|
||||
<br>
|
||||
|
||||
If you use Twilio for your messaging service, these fields will also be required
|
||||
Field | Description | Requirement
|
||||
--- | --- | ---
|
||||
TWILIO_ACCOUNT_SID | The account SID for your Twilio account | REQUIRED
|
||||
TWILIO_AUTH_TOKEN | The auth token for your Twilio account | REQUIRED
|
||||
|
||||
<br>
|
||||
|
||||
If you use Telnyx for your messaging service, this field will also be required
|
||||
Field | Description | Requirement
|
||||
--- | --- | ---
|
||||
TELNYX_API_KEY | The API key for your Telnyx account | REQUIRED
|
||||
|
||||
<br>
|
||||
|
||||
If you choose to enable Uptime Kuma notifications, these fields will also be required
|
||||
Field | Description | Requirement
|
||||
--- | --- | ---
|
||||
AUTHORIZATION_HEADER_TOKEN | Token used to authorize requests from Uptime Kuma - follow the "Uptume Kuma Setup" instructions further down this page | REQUIRED
|
||||
NOTIF_RECIEVERS | Comma separated list of phone numbers (international format) that will recieve text messages from Uptime Kuma | REQUIRED
|
||||
|
||||
<br>
|
||||
|
||||
If you choose to enable the Jellyfin temp accounts features, these fields will also be required
|
||||
Field | Description | Requirement
|
||||
--- | --- | ---
|
||||
JELLYFIN_URL | The URL of your Jellyfin instance | REQUIRED
|
||||
JELLYFIN_API_KEY | The API from Jellyfin (can be created in Dashboard > API Keys) | REQUIRED
|
||||
|
||||
### Uptime Kuma Setup
|
||||
If you choose to enable the Uptime Kuma notifications, you will
|
Reference in New Issue
Block a user