Diaspora Lifestyle

Reconnect with your African heritage and community

Community & Culture

Connect with the diaspora community and experience African culture.

Diaspora Programs

Cultural Education

Learn about African heritage, traditions, and history

Business Network

Connect with diaspora entrepreneurs and business leaders

Community Events

Participate in cultural celebrations and community gatherings

load_dotenv() app = Flask(__name__) app.secret_key = os.environ.get('SECRET_KEY', 'dev-secret-key-change-in-production') if __name__ == '__main__': try: from waitress import serve serve(app, host='0.0.0.0', port=int(os.environ.get('PORT', 5000))) except ImportError: app.run(host='0.0.0.0', port=int(os.environ.get('PORT', 5000)), debug=False)