1) Section for system-level imports
2) Section for local utility functions that can be used across multiple applications.
2) Section for Configurations (userids/passwords/URLs)
3) Section for Initialization code
4) Functional code sections
I'm trying to map the configuration section (in particular) to allow for shared configurations across multiple GITHUB repositories; that way I can change configurations across a wide range of apps just by changing one repository.
But doing that in GITHUB? So far I'm favoring SubRepositories, which is a bit sticky at times.
Ok!
My python app template includes:
1) Section for system-level imports 2) Section for local utility functions that can be used across multiple applications. 2) Section for Configurations (userids/passwords/URLs) 3) Section for Initialization code 4) Functional code sections
I'm trying to map the configuration section (in particular) to allow for shared configurations across multiple GITHUB repositories; that way I can change configurations across a wide range of apps just by changing one repository.
But doing that in GITHUB? So far I'm favoring SubRepositories, which is a bit sticky at times.