An automated Ghost CMS content generator that transforms the latest English AI news articles into engaging French content. This bot fetches current AI news, translates and adapts it into French using OpenAI's language models, and pairs it with relevant imagery from Unsplash to create draft posts for your Ghost blog.
An automated content generation system for Ghost blogs that fetches AI news, translates them to French, and publishes them automatically using OpenAIβs GPT-4o.
git clone https://github.com/Decryptu/ghost-autoblogger-bot.git
cd ghost-autoblogger-bot
npm install
.env
file in the root directory:OPENAI_API_KEY=your_openai_key
GHOST_API_URL=your_ghost_url
GHOST_CONTENT_API_KEY=your_ghost_content_key
GHOST_ADMIN_API_KEY=your_ghost_admin_key
UNSPLASH_ACCESS_KEY=your_unsplash_key
NEWS_API_KEY=your_news_api_key
Run the bot immediately:
node bot.js --run
For production, itβs recommended to use PM2:
npm install -g pm2
pm2 start ecosystem.config.js
pm2 logs ghost-autoblogger
Edit config.js
to customize:
βββ bot.js # Main bot logic
βββ config.js # Configuration settings
βββ ecosystem.config.js # PM2 configuration
βββ .env # Environment variables
βββ generated_articles/ # Local storage for generated articles
Articles are saved in two places:
generated_articles
folder as markdown filesEdit CRON_SCHEDULE
in config.js
. Default is twice daily (0 7,19 * * *
).
Edit ARTICLE_PROMPT
in config.js
to change the tone, style, or format of generated articles.
Modify the tags array in the publishToGhost
function in bot.js
.
The bot includes comprehensive error handling for:
All errors are logged to the console with detailed messages.
git checkout -b feature/amazing-feature
)git commit -m 'Add amazing feature'
)git push origin feature/amazing-feature
)MIT License - see the LICENSE file for details
For support, please open an issue in the GitHub repository.