From 6650dcfee1c8aefedf7c9330566c0bb7ecb1a1d3 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 27 Aug 2025 17:49:43 -0700 Subject: feat: Initial commit --- env.example | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 env.example (limited to 'env.example') diff --git a/env.example b/env.example new file mode 100644 index 0000000..1e19fd4 --- /dev/null +++ b/env.example @@ -0,0 +1,24 @@ +# Reddit API Credentials +# Get these from https://www.reddit.com/prefs/apps +REDDIT_CLIENT_ID=your_client_id_here +REDDIT_CLIENT_SECRET=your_client_secret_here +REDDIT_USERNAME=your_reddit_username +REDDIT_PASSWORD=your_reddit_password +REDDIT_USER_AGENT=UmaBot/0.1.0 + +# Subreddit Configuration +# The subreddit where the bot will operate (without the r/ prefix) +SUBREDDIT_NAME=your_subreddit_name + +# Bot Messages +# Customize these messages as needed +SPAM_MESSAGE=Your post has been removed for posting too frequently. Please wait before posting again. +ROLEPLAY_MESSAGE=Your post has been removed. Only one roleplay post is allowed per user. + +# Bot Settings +# How often to check for new posts (in seconds) +CHECK_INTERVAL=60 +# Maximum number of posts a user can make in 24 hours +MAX_POSTS_PER_DAY=3 +# Set to true to test without actually removing posts +DRY_RUN=false -- cgit v1.2.3