Configure ContentWing to work with your social media accounts, brand preferences, and notification settings. This guide covers all configuration options.
Follow these steps to get your basic configuration set up:
Navigate to the settings panel in your dashboard
Start by connecting your primary social media account
Configure your brand voice and content preferences
Create a test post to verify everything works
Detailed configuration options for each area of ContentWing:
Connect your social media platforms
Set up API credentials for each platform
Customize your content generation settings
Configure alerts and notifications
Most social media platforms require OAuth app configuration. You'll need to create apps in each platform's developer portal.
Configure environment variables for API keys and platform settings:
# Database
DATABASE_URL="file:./data/db/content.db"
# Social Media APIs
FACEBOOK_APP_ID="your_facebook_app_id"
FACEBOOK_APP_SECRET="your_facebook_app_secret"
TWITTER_CLIENT_ID="your_twitter_client_id"
TWITTER_CLIENT_SECRET="your_twitter_client_secret"
LINKEDIN_CLIENT_ID="your_linkedin_client_id"
LINKEDIN_CLIENT_SECRET="your_linkedin_client_secret"
# AI Services
OPENAI_API_KEY="your_openai_api_key"
OLLAMA_BASE_URL="http://localhost:11434"
# Application
NEXTAUTH_SECRET="your_nextauth_secret"
NEXTAUTH_URL="http://localhost:3000"
# Notifications
SMTP_HOST="smtp.gmail.com"
SMTP_PORT="587"
SMTP_USER="your_email@gmail.com"
SMTP_PASS="your_app_password"Verify your configuration is working correctly:
Once your configuration is complete, continue with these guides:
Need help with specific platform configurations or running into OAuth issues?