steamgifts-bot/README.md

45 lines
1 KiB
Markdown
Raw 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
2020-06-26 22:55:25 +02:00
### Run from sources
```bash
python -m venv env
source env/bin/activate
pip install -r requirements.txt
python src/cli.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
docker run --name steamgifts -d -it mcinj/docker-steamgifts-bot:latest
# Attach to it to fill in the questions
docker attach steamgifts # to detach, you must use ctrl+p then ctrl+q.
# ctrl+c will kill the container
```
#### Or build it yourself locally
```bash
# Build the image
docker build -t steamgifts:latest .
# Run the container
docker run --name steamgifts -d -it steamgifts:latest
# Attach to it to fill in the questions
docker attach steamgifts # to detach, you must use ctrl+p then ctrl+q.
# ctrl+c will kill the container
```
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.