Error 404: NOT_FOUND appears when I am traying to deploy the app on Vercel, from Github Web Hosting.
404: NOT_FOUND
Code: 'N0T_F0UND'
ID: gru1::dnvgg-1743867660340-a28ecabac3e7
The file structure is the following:
my-flask-app/├── app.py # main Flask application file├── requirements.txt # Python dependencies├── templates/ # Directory for HTML template│ └── index.html├── static/ # for style.css, images and audio filesThis application is already deployed at "https://calculo-intereses.onrender.com/" and it is fuctionning as expected. There is no .gitignore folder at Github. For running on localhost, I start running the command python app.py. The app imports the following libraries:
from flask import Flask, request, render_template, session, jsonify, flash, g, redirect, url_for, send_file import pandas as pd from datetime import datetime import logging import os import sqlite3 from io import BytesIOThanks to all.