i just deployed my first flask app and it was amazing, but i'm facing a problem i can't understand.
when i was developing my app (Window) i used set FLASK_ENV=development to see the changes in my app without restarting the flask server, when i uploaded the app to my vps worked great, but, when i tried to upload a new changes the app doesn't update.
Can someone explain me why my flask app code doesn't update when i upload it to my vps?
i'm using Gunicorn and i have already put the debug to true
if __name__ == '__main__':
app.run(debug=True)
But when i visit my site i can't see the changes made just the first code i uploaded when i set the server.
What should i do to update my code once uploaded?