blob: 7fc71f92a20aa3e519163b5b3159b7963595d68d (
plain) (
blame)
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
|
services:
- type: web
name: umabot
env: python
plan: free
buildCommand: pip install -e .
startCommand: python -m umabot
port: 80
envVars:
- key: REDDIT_CLIENT_ID
sync: false
- key: REDDIT_CLIENT_SECRET
sync: false
- key: REDDIT_USERNAME
sync: false
- key: REDDIT_PASSWORD
sync: false
- key: SUBREDDIT_NAME
sync: false
- key: REDDIT_USER_AGENT
value: UmaBot/0.1.0
- key: CHECK_INTERVAL
value: "60"
- key: MAX_POSTS_PER_DAY
value: "3"
- key: MAX_ROLEPLAY_POSTS_PER_DAY
value: "1"
- key: DRY_RUN
value: "false"
- key: SPAM_MESSAGE
value: "Your post has been removed for posting too frequently. Please wait before posting again."
- key: ROLEPLAY_MESSAGE
value: "Your post has been removed. Only one roleplay post is allowed per user."
|