help@rskworld.in +91 93305 39277
RSK World
  • Home
  • Development
    • Web Development
    • Mobile Apps
    • Software
    • Games
    • Project
  • Technologies
    • Data Science
    • AI Development
    • Cloud Development
    • Blockchain
    • Cyber Security
    • Dev Tools
    • Testing Tools
  • About
  • Contact

Theme Settings

Color Scheme
Display Options
Font Size
100%
Back to Project
RSK World
code-assistant-bot
RSK World
code-assistant-bot
Code Assistant Bot - Python + Flask + OpenAI API + Code Generation + Debugging + Code Analysis + GitHub Integration
code-assistant-bot
  • __pycache__
  • static
  • templates
  • utils
  • .env.example755 B
  • .gitignore956 B
  • CHANGELOG.md3.6 KB
  • DEPLOYMENT.md1.9 KB
  • FEATURES.md5 KB
  • GITHUB_RELEASE_INSTRUCTIONS.md3.9 KB
  • LICENSE1.2 KB
  • Procfile44 B
  • README.md10 KB
  • README_DEPLOYMENT.md2.3 KB
  • RELEASE_NOTES.md3.9 KB
  • app.py18.5 KB
  • code-assistant-bot.png1.1 MB
  • config.py3.2 KB
  • requirements.txt851 B
  • run.py1.6 KB
  • runtime.txt15 B
  • vercel.json314 B
  • wsgi.py271 B
setup.pyvercel.jsonruntime.txtrun.py
vercel.json
Raw Download
Find: Go to:
{
  "version": 2,
  "builds": [
    {
      "src": "app.py",
      "use": "@vercel/python"
    }
  ],
  "routes": [
    {
      "src": "/static/(.*)",
      "dest": "/static/$1"
    },
    {
      "src": "/(.*)",
      "dest": "app.py"
    }
  ],
  "env": {
    "PYTHON_VERSION": "3.9"
  }
}
23 lines•314 B
json
runtime.txt
Raw Download
Find: Go to:
python-3.9.16
2 lines•15 B
text
run.py
Raw Download
Find: Go to:
#!/usr/bin/env python3
"""
Code Assistant Bot - Application Runner
Author: RSK World (https://rskworld.in)
Founder: Molla Samser
Designer & Tester: Rima Khatun
Contact: help@rskworld.in, +91 93305 39277
Year: 2026
"""

import os
import sys
from app import app

def main():
    """
    Main entry point for the Code Assistant Bot application
    """
    try:
        # Validate configuration
        from config import Config
        Config.validate_config()
        
        # Get configuration
        host = os.environ.get('HOST', '0.0.0.0')
        port = int(os.environ.get('PORT', 5000))
        debug = os.environ.get('FLASK_ENV', 'development') == 'development'
        
        print("=" * 60)
        print("šŸ¤– Code Assistant Bot - AI-Powered Coding Assistant")
        print("=" * 60)
        print(f"šŸ“ Server running on: http://{host}:{port}")
        print(f"šŸ”§ Debug mode: {'ON' if debug else 'OFF'}")
        print(f"🌐 Environment: {os.environ.get('FLASK_ENV', 'development')}")
        print(f"šŸ‘Øā€šŸ’» Author: RSK World (https://rskworld.in)")
        print(f"šŸ“ž Contact: help@rskworld.in | +91 93305 39277")
        print("=" * 60)
        print("šŸš€ Starting server...")
        print("šŸ“ Press Ctrl+C to stop the server")
        print("=" * 60)
        
        # Run the application
        app.run(host=host, port=port, debug=debug)
        
    except KeyboardInterrupt:
        print("\nšŸ›‘ Server stopped by user")
        sys.exit(0)
    except Exception as e:
        print(f"āŒ Error starting server: {str(e)}")
        sys.exit(1)

if __name__ == '__main__':
    main()
54 lines•1.6 KB
python

About RSK World

Founded by Molla Samser, with Designer & Tester Rima Khatun, RSK World is your one-stop destination for free programming resources, source code, and development tools.

Founder: Molla Samser
Designer & Tester: Rima Khatun

Development

  • Game Development
  • Web Development
  • Mobile Development
  • AI Development
  • Development Tools

Legal

  • Terms & Conditions
  • Privacy Policy
  • Disclaimer

Contact Info

Nutanhat, Mongolkote
Purba Burdwan, West Bengal
India, 713147

+91 93305 39277

hello@rskworld.in
support@rskworld.in

© 2026 RSK World. All rights reserved.

Content used for educational purposes only. View Disclaimer