diff --git a/settings.py.sample b/settings.py.sample new file mode 100644 index 0000000..fecb17a --- /dev/null +++ b/settings.py.sample @@ -0,0 +1,14 @@ +log_path = "./store/" # Stores toot data +data_path = "./data/" # Make sure this directory is not accessible for other users or per web +app_path = f"{data_path}.htapp.data" # Store app secret +user_path = f"{data_path}.htuser.data" # Store user secret +api_url = 'https://mastodon.grml.de' # Mastodon Server URL +bot_name = 'grmlmatobi' # Botname +account_name = 'matobi' # Mastodon-Account name +account_password = 'supersecret' # Mastodon-Account password +twitter_auth_keys = { # Twitter API + "consumer_key" : "REPLACE_THIS_WITH_YOUR_CONSUMER_KEY", + "consumer_secret" : "REPLACE_THIS_WITH_YOUR_CONSUMER_SECRET", + "access_token" : "REPLACE_THIS_WITH_YOUR_ACCESS_TOKEN", + "access_token_secret" : "REPLACE_THIS_WITH_YOUR_ACCESS_TOKEN_SECRET" +}