-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (28 loc) · 877 Bytes
/
.env.example
File metadata and controls
34 lines (28 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Steam Account Configuration
STEAM_ACCOUNT_NAME=your_steam_username
STEAM_PASSWORD=your_steam_password
STEAM_SHARED_SECRET=your_shared_secret_from_mobile_authenticator
STEAM_IDENTITY_SECRET=your_identity_secret_from_mobile_authenticator
# PostgreSQL Database Configuration
PG_HOST=localhost
PG_PORT=5432
PG_USER=postgres
PG_PASSWORD=your_database_password
PG_DATABASE=steam_trading
# Trading Configuration
# Maximum price for buy orders in EUR/NOK
MAX_PRICE=100
# Minimum expected profit percentage (0-1)
MIN_PROFIT=0.15
# Game Configuration
# Supported games: rust, csgo, dota2
GAME=rust
# Optional: ML Predictions
# Enable ML-based price predictions (true/false)
USE_ML_PREDICTIONS=false
# Optional: Scheduler
# Cron expressions for automated tasks
# Example: "0 */6 * * *" - every 6 hours
FETCH_SCHEDULE=0 */6 * * *
BUY_SCHEDULE=0 */2 * * *
SELL_SCHEDULE=0 */4 * * *