Last active
May 6, 2023 17:10
-
-
Save Underdoge/e80351c0566a9f9b186ac799e2b616f4 to your computer and use it in GitHub Desktop.
config.json file for undertweet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"dalle": { | |
"api_url": "https://backend.craiyon.com/generate", | |
"api_request_timeout": 210, | |
"generate_request_timout": 360, | |
"retry_delay": 5 | |
}, | |
"openAI":{ | |
"api_generations_url": "https://api.openai.com/v1/images/generations", | |
"api_variations_url": "https://api.openai.com/v1/images/variations" | |
}, | |
"ghetty": { | |
"url": "https://images.ghetty.space/upload" | |
}, | |
"twitter":{ | |
"bearer_token":"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", | |
"rulesURL":"https://api.twitter.com/2/tweets/search/stream/rules", | |
"streamURL":"https://api.twitter.com/2/tweets/search/stream" | |
}, | |
"irc":{ | |
"nick":"nick", | |
"host":"irc.network.url", | |
"pass":"pass", | |
"auto_reconnect": true, | |
"auto_reconnect_wait": 4000, | |
"auto_reconnect_max_retries": 3, | |
"port":9999, | |
"tls":true, | |
"channels":[], | |
"adminHostnames":[], | |
"adminNicks":[], | |
"ignoreHostnames": [], | |
"ignoreNicks": [], | |
"ignoreIdents": [] | |
}, | |
"sqlite3":{ | |
"filename":"./local_database.db" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment