Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adnanmula/new-game-notifier
Get notified when a new game is added to a steam account.
https://github.com/adnanmula/new-game-notifier
family-sharing steam
Last synced: 7 days ago
JSON representation
Get notified when a new game is added to a steam account.
- Host: GitHub
- URL: https://github.com/adnanmula/new-game-notifier
- Owner: adnanmula
- Created: 2019-12-07T13:20:35.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-08-31T08:48:36.000Z (about 1 year ago)
- Last Synced: 2023-08-31T20:22:51.492Z (about 1 year ago)
- Topics: family-sharing, steam
- Language: PHP
- Homepage:
- Size: 577 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Steam new game notifier
Do you share your steam library through family sharing and want your friends to know the new games you get?## Set up
Create an .env file and fill your steam and telegram tokens.
```
cp .env.dist .env
```Build and up the project.
```
make build
make up
```
Run the init command to create the database.```
docker-compose exec php sh -c "php bin/console n:init"
```
Then run the check command once to import your library (the first time is recommended to disable telegram notifications with -t false)
It may take a while depending of your library size.
```
docker-compose exec php sh -c "php bin/console n:check -t false"
```
Then set up the check command in crontab.
```
0 * * * * docker-compose exec -T php sh -c "php bin/console n:check"
```