Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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"
```