diff --git a/src/load_config.py b/src/load_config.py index e5c8eae..6092811 100644 --- a/src/load_config.py +++ b/src/load_config.py @@ -1,4 +1,40 @@ import os, toml from dotenv import load_dotenv -config = toml.load("conf.toml") \ No newline at end of file +config = toml.load("conf.toml") + +""" +TOML FILE EXAMPLE: + +[image] +formats = ['jpg','png'] ## Not currently checked for + +[flickr] +enable = true +app_api = '' +app_secret = '' +watermark = false +add_to_description = "\nCheckout my Pixelfed: https://pixelfed.scot/fbface" + +[pixelfed] #MASTODON_1 (If boost_mastodon is enabled below, this is what will be boosted) +enable = true +server = 'https://pixelfed.scot' +token = '' +watermark = false +add_to_description = '' + +[facebook] +enable = false +api_key = '' +watermark = true +add_to_desription = '\nCheckout my Pixelfed: https://pixelfed.scot/fbface' + +[watermark] +text = "" #TEXT + +[boost_mastodon] #Share image posted to Pixelfed to Mastodon +enable = true +server = 'https://mastodon.online' +token = '' +add_to_description = '' +""" \ No newline at end of file