As mentioned in my other issue ( #128 ) i'm trying to {paas}ify my flask app. I know we're using the presence of requirements.txt to determine a Pip dependency manager but there's an issue with using the contents of the requirements.txt file to determine the stack.
It seems that it is fairly common for flask (maybe many python?) apps to have a requirements.txt file in a project root that require other requirements.txt files. In the case of the one I've been testing, the contents of the root requirements.txt is:
# Included because many Paas's require a requirements.txt file in the project root
# Just installs the production requirements.
-r requirements/prod.txt
and the true requirements are in the prod/dev.txt files inside of the requirements directory.
As mentioned in my other issue ( #128 ) i'm trying to {paas}ify my flask app. I know we're using the presence of
requirements.txtto determine a Pip dependency manager but there's an issue with using the contents of the requirements.txt file to determine the stack.It seems that it is fairly common for flask (maybe many python?) apps to have a requirements.txt file in a project root that require other requirements.txt files. In the case of the one I've been testing, the contents of the root requirements.txt is:
and the true requirements are in the prod/dev.txt files inside of the
requirementsdirectory.