Skip to content

Latest commit

 

History

History
41 lines (35 loc) · 1.1 KB

README.md

File metadata and controls

41 lines (35 loc) · 1.1 KB

ChamaYetu

Application to better manage SME groups and chamas.

Project Structure

/ChamaYetu
     |-- run.py
     |-- config.py
     |__ /venv             # Virtual Environment, not pushed to git
     |__ /app              # Our Application Module
         |-- __init__.py
         |-- /mod_auth # handles all authentication with logins
             |-- __init__.py
             |-- controllers.py
             |-- models.py
             |-- forms.py
         |--/mod_dashboard
            |--__init__.py
            |--controllers.py
            |--views.py
     |-- views.py                
        |__ /templates
            |__ /auth
                |-- forgot.html
                |-- login.html
                |-- signup.html
            |--/user_dashboard
                |-- user_dash.html
                |-- calender.html
                |-- base.html
            404.html
        |__ /static
            |__ ..
            |__ .
        |__ ..
        |__ .

Project Breakdown