a moon tracking bot for Bluesky

docs: clarify debug mode behavior in README

Explain the two possible debug scenarios based on whether Bluesky credentials are provided

+6 -1
+6 -1
README.md
··· 58 58 59 59 ### Debug Mode 60 60 61 - When `DEBUG_MODE` is set to `true` in `config.env`, the bot will not post to Bluesky. Instead, it will log all possible combinations of moon phase messages to the console at once, demonstrating the message generation for various moon phases and months. This is useful for testing message generation and length without making actual posts. 61 + When `DEBUG_MODE` is set to `true` in `config.env`: 62 + 63 + - If `BLUESKY_USERNAME` and `BLUESKY_PASSWORD` are provided, the bot will attempt to post to Bluesky immediately upon starting. 64 + - If Bluesky credentials are not provided, the bot will log all possible combinations of moon phase messages to the console, demonstrating message generation without making actual posts. 65 + 66 + This is useful for testing the full posting functionality or just the message generation. 62 67 63 68 ## Contributing 64 69