Get in touch
Close

Vision AI Image Generation: Flask Deployment Guide

Vision AI Flask Application Deployment Guide

Table of Contents

  1. Introduction
  2. Prerequisites
  3. Installation
  4. Configuration
  5. Deployment
  6. CI/CD Setup
  7. Maintenance
  8. Troubleshooting

Introduction

This guide provides step-by-step instructions for deploying the Vision AI Flask application. The application provides AI-powered image generation capabilities through a REST API.

Prerequisites

  • Python 3.8+
  • Git
  • Google Cloud account with Vertex AI enabled
  • Linux server (Ubuntu 20.04 recommended)
  • Domain name with DNS configured
  • GitHub repository access

Installation

  1. Clone the repository:git clone https://github.com/Eh-Mr-SK/vision-ai-flask.git cd vision-ai-flask
  2. Create and activate virtual environment:python3 -m venv venv source venv/bin/activate
  3. Install dependencies:pip install -r requirements.txt

Configuration

  1. Create .env file:cp .env.example .env
  2. Edit .env with your credentials:API_SECRET_KEY=your-secure-api-key GITHUB_SECRET=your-github-webhook-secret
  3. Set up Google Cloud credentials:export GOOGLE_APPLICATION_CREDENTIALS="path/to/your/service-account.json"
  4. Create storage directory:mkdir -p storage/images

Deployment

  1. Install Gunicorn:pip install gunicorn
  2. Set up SSL certificates using Let’s Encrypt:sudo apt install certbot python3-certbot-nginx sudo certbot certonly --standalone -d yourdomain.com
  3. Create systemd service file /etc/systemd/system/visionai.service:[Unit] Description=Vision AI Flask Application After=network.target [Service] User=www-data Group=www-data WorkingDirectory=/path/to/vision-ai-flask ExecStart=/path/to/vision-ai-flask/venv/bin/gunicorn --workers 3 --bind 0.0.0.0:8000 --certfile /etc/letsencrypt/live/yourdomain.com/fullchain.pem --keyfile /etc/letsencrypt/live/yourdomain.com/privkey.pem main:app Restart=always [Install] WantedBy=multi-user.target
  4. Start and enable the service:sudo systemctl daemon-reload sudo systemctl start visionai sudo systemctl enable visionai

CI/CD Setup

  1. In your GitHub repository, go to Settings > Webhooks
  2. Add new webhook:
    • Payload URL: https://yourdomain.com/github-webhook
    • Content type: application/json
    • Secret: Use the same secret as in .env
    • Events: Select “Just the push event”
  3. Save the webhook

Maintenance

  • View logs:sudo journalctl -u visionai -f
  • Restart service:sudo systemctl restart visionai
  • Update application:git pull origin main sudo systemctl restart visionai

Troubleshooting

  1. API not responding:
    • Check service status: sudo systemctl status visionai
    • Check logs: sudo journalctl -u visionai
  2. Image generation failing:
    • Verify Google Cloud credentials
    • Check Vertex AI quota and permissions
  3. GitHub webhook not working:
    • Verify webhook secret matches .env
    • Check GitHub webhook delivery logs
  4. SSL certificate issues:
    • Renew certificates: sudo certbot renew
    • Verify certificate paths in service fil