Python backend
1) Create directory mkdir fileName 2) Make sure you're in the project directory cd fileName 3) Create virtual environment python3 -m venv venv 4) Activate virtual environment source venv/bin/activate 5) please first those dependency before write insede the requirement.txt # Install each package separately pip install Flask pip install cloudinary pip install python-dotenv pip install Flask-CORS 6.0 ) Create Django project django-admin startproject file_name . 6.1 ) Create weather app python manage.py startapp fileName 7) Edit file_name/ settings.py : # Add your app to INSTALLED_APPS INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'fileName', # Add this line this is you app name inside the django project ] # Add REST framework if you want APIs (opti...