steamgifts-bot/README.md

48 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2019-02-28 13:12:42 +01:00
### About
The bot is specially designed for [SteamGifts.com](https://www.steamgifts.com/)
2019-02-28 13:04:41 +01:00
2019-02-28 13:12:42 +01:00
### Features
- Automatically enters giveaways.
- Undetectable.
2020-06-26 22:55:25 +02:00
- Сonfigurable.
2019-02-28 13:12:42 +01:00
- Sleeps to restock the points.
- Can run 24/7.
2019-02-28 13:04:41 +01:00
2022-04-23 21:20:09 +02:00
## Instructions
1. Rename `config/config.ini.example` to `config/config.ini`.
2. Add your PHPSESSION cookie to it.
3. Modifying the other settings is optional.
2020-06-26 22:55:25 +02:00
### Run from sources
2022-04-23 21:20:09 +02:00
2020-06-26 22:55:25 +02:00
```bash
python -m venv env
source env/bin/activate
pip install -r requirements.txt
2022-04-23 21:20:09 +02:00
cd src
python run.py
2020-06-26 22:55:25 +02:00
```
2019-02-28 13:12:42 +01:00
2022-04-22 20:32:55 +02:00
### Docker
2022-04-23 21:00:22 +02:00
#### Run it
2022-04-22 20:32:55 +02:00
```bash
# Run the container
# Set TZ based on your timezone: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
2022-04-27 00:00:08 +02:00
docker run --name steamgifts -e TZ=America/New_York -d -v /path/to/the/config/folder:/config mcinj/docker-steamgifts-bot:latest
2022-04-22 20:32:55 +02:00
```
#### Or build it yourself locally
```bash
# Build the image
docker build -t steamgifts:latest .
# Run the container
# Set TZ based on your timezone: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
docker run --name steamgifts -e TZ=America/New_York -d -v /path/to/the/config/folder:/config steamgifts:latest
2022-04-22 20:32:55 +02:00
```
2019-02-28 13:12:42 +01:00
### Help
2020-06-26 22:55:25 +02:00
Please leave your feedback and bugs in `Issues` page.