gitextract_nl_bb119/ ├── .github/ │ └── workflows/ │ └── deploy.yml ├── .gitignore ├── application/ │ ├── CohereAI/ │ │ ├── GenerateBlog.py │ │ └── Utils.py │ ├── __init__.py │ ├── auth/ │ │ ├── __init__.py │ │ ├── forms.py │ │ └── views.py │ ├── config.py │ ├── models.py │ ├── public/ │ │ ├── __init__.py │ │ └── views.py │ ├── static/ │ │ └── assets/ │ │ ├── css/ │ │ │ └── custom.css │ │ ├── js/ │ │ │ ├── clock.js │ │ │ └── theme.js │ │ └── vendor/ │ │ └── prismjs/ │ │ ├── plugins/ │ │ │ ├── line-numbers/ │ │ │ │ └── prism-line-numbers.css │ │ │ └── toolbar/ │ │ │ └── prism-toolbar.css │ │ └── themes/ │ │ └── prism.css │ ├── superadmin/ │ │ ├── __init__.py │ │ ├── forms.py │ │ └── views.py │ ├── templates/ │ │ ├── auth/ │ │ │ ├── activation_link_email.html │ │ │ ├── forgetpassword.html │ │ │ ├── join.html │ │ │ ├── login.html │ │ │ ├── password_reset_link_email.html │ │ │ └── reset_token.html │ │ ├── helpers/ │ │ │ ├── _global_footer.html │ │ │ ├── _nav_top_landing.html │ │ │ └── _side_navbar_dashboard.html │ │ ├── layout/ │ │ │ └── root.html │ │ ├── public/ │ │ │ ├── landing.html │ │ │ └── letter.html │ │ └── user/ │ │ ├── account.html │ │ ├── account_update_password.html │ │ ├── dashboard.html │ │ ├── letter_sent.html │ │ ├── letters.html │ │ └── send_letter_email.html │ ├── user/ │ │ ├── __init__.py │ │ ├── forms.py │ │ └── views.py │ └── utils/ │ ├── CutomAuth.py │ ├── Location.py │ ├── SendEmail.py │ ├── Utils.py │ └── __init__.py ├── requirements.txt └── run.py