-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 1002 Bytes
/
Copy path.env.example
File metadata and controls
27 lines (22 loc) · 1002 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
# Reddit API Credentials
# These are required for the app to function with your Reddit API credentials
# Get these from https://www.reddit.com/prefs/apps
REDDIT_API_CLIENT_ID=your_client_id_here
REDDIT_API_REDIRECT_URI=http://127.0.0.1
# Your Reddit username (without the /u/ prefix)
# This will be used in the app's user agent
REDDIT_USERNAME=your_reddit_username
# Giphy API Key (Optional)
# If provided, this will replace the default Giphy API key in the app
# Get this from https://developers.giphy.com/
GIPHY_API_KEY=your_giphy_api_key_here
# Keystore Configuration
# Required for signing the APK
# Generate a keystore file and convert it to base64 as described in the README
KEYSTORE_BASE64=your_base64_encoded_keystore_here
# Optional keystore credentials (defaults to "Infinity" if not provided)
KEYSTORE_PASSWORD=Infinity
KEY_ALIAS=Infinity
KEY_PASSWORD=Infinity
# Note: Copy this file to .env and replace the values with your own
# DO NOT commit your actual .env file to version control