Recently I start a project based on Flask/Python. Right now I have set the environment - but I never create a project step by step in python, I have only experienced little scripts and small apps when I learn the programming language.
I have install and set all the dependencies in the same folder as you can see here:
In 'env' - I have create the virtual environment.
In 'TheSocial' - is and it will be the application itself.
My questions are:
1) If this 'env' will be moved or it wasn't created inside 'project_py', my application from 'TheSocial' can still run inside the virutalenv, or not ?
2) Are there any standards that you need to respect when you created any project structure ?
I have also seen an already answered StackOverFlow question , but I want to find out answers for question 1)
This questions are addressed in scope to understand how real projects are structured and design from scratch.