https://github.com/nitrikx/ombi-senscritique
Ombi x Senscritque synchronization tool
https://github.com/nitrikx/ombi-senscritique
ombi senscritique sync typescript
Last synced: 8 months ago
JSON representation
Ombi x Senscritque synchronization tool
- Host: GitHub
- URL: https://github.com/nitrikx/ombi-senscritique
- Owner: NitriKx
- License: gpl-3.0
- Created: 2021-04-13T20:02:13.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-13T10:22:41.000Z (over 4 years ago)
- Last Synced: 2025-01-28T03:30:19.409Z (9 months ago)
- Topics: ombi, senscritique, sync, typescript
- Language: TypeScript
- Homepage:
- Size: 745 KB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ombi x Senscritique
[](https://github.com/NitriKx/ombi-senscritique/actions/workflows/build.yml)
[](https://github.com/NitriKx/ombi-senscritique/actions/workflows/build-docker-image.yml)
Request movies and tv shows wished on SensCritique on Ombi.
Only user/password authentication is supported for now.
## Installation
### Docker
```
docker pull nitrikx/ombi-senscritique
```
### From source
```bash
git clone https://github.com/NitriKx/ombi-senscritique.git
cd ombi-senscritique
npm i
npm run build
npm run start:prod
```
## Configuration
```
curl -H "Content-Type: application/json" --data '{"scheduling": "0 */5 * * * *", "languageCode": "FR", "ombiUrl": "https://myombi.io", "ombiApiKey": "2211146ccc2246ef8cd4abcd37255dc3", "sensCritiqueUserEmail": "foo@bar.com", "sensCritiqueUserPassword": "myStrongPassword" }' http://localhost:3582/api/v1/configuration
```
| Name | Description | Default value |
| ---- | ----------- | ------------- |
| scheduling | The frequency of synchronization between Ombi and SensCritique | 0 */5 * * * * |
| languageCode | The language code when searching for a movie on ombi. Usually FR as SensCritique is referencing movies in french | FR |
| ombiUrl | Your Ombi base URL. | N/A |
| ombiApiKey | Your Ombi API Key. | N/A |
| sensCritiqueUserEmail | Your SensCritique email | N/A |
| sensCritiqueUserPassword | Your SensCritique password | N/A |
## Credits
Thanks to [LinuxServer.io](https://github.com/linuxserver) for the Docker image framework.