commit a92fd5726c23a9c0ece4305eb0009eb32b350cbd parent 10aae8962c20c4a200b6b64bd99cbe3524e7ee30 Author: Brennen T. Mazur <brennen@madis.cool> Date: Sun, 4 Dec 2022 00:08:02 -0700 clarified app structure in README and added app config.py file Diffstat:
M | README | | | 9 | +++++++-- |
A | config.py | | | 0 |
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/README b/README @@ -7,6 +7,11 @@ Current plans are to use mongoDB as the backend to a simplistic dashboard for ac Project has potential to be renamed to scms (simple content management system) based on potential end-goals of multiple clients. An option would be to create the base structure for the cms (as human resource management [ex. time tracking]) and allow patches to include additional functionality like equipment tracking etc. Allows no-nonsence approach to anti-bloat management software. -Likely will be lisencing under some copyleft lisence, GPLv3 or LGPLv3. Also mulling over options for BSD lisences. -Work is currently ongoing on the wireframe for the landing and signin page. +Work is currently ongoing on the wireframe for the landing dashboard and signin page. + +webapp setings are located in config.py +db file will likely be /scms.db or whatever the appname resolves to +templates holds each "component" either a standalone file, or a directory for a index.html(full page route) and widget.html(dashboard interactable view) + +For organization specifics... it might be usefull to create diff files for specific additions etc? Possibly too costly to maintain over master version changes. diff --git a/config.py b/config.py