I'm having issue with hosting Flask App on AWS with Elastic Beanstalk. I followed document on AWS(which seems a little old?), and did some workaround suggested here. It works if I have this folder structure:
--application.py /static /templates requirements.txt .ebextensions .elasticbeanstalk
However, I want to make my application more structured. So I moved my folder structure to and it stopped working
--application.py --.ebxtensions --.elasticbeanstalk /app - __init__.py - /static - /templates
What I have tried is changing the settings in optionsettings.myapp-env, suggested here. But I got no luck.
(P.S. App works fine except not recognizing the static files folder)
Any help would be appreciated!