Last active
May 15, 2024 03:39
-
-
Save efazati/4545740 to your computer and use it in GitHub Desktop.
Python Flask Folders and Files structure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. | |
├── deploy.py | |
├── project | |
│ ├── application.py | |
│ ├── apps | |
│ │ ├── articles | |
│ │ │ ├── forms.py | |
│ │ │ ├── __init__.py | |
│ │ │ ├── models.py | |
│ │ │ └── views.py | |
│ │ ├── education | |
│ │ │ ├── forms.py | |
│ │ │ ├── __init__.py | |
│ │ │ ├── models.py | |
│ │ │ └── views.py | |
│ │ ├── __init__.py | |
│ │ ├── job | |
│ │ │ ├── forms.py | |
│ │ │ ├── __init__.py | |
│ │ │ ├── models.py | |
│ │ │ └── views | |
│ │ │ ├── company.py | |
│ │ │ ├── __init__.py | |
│ │ │ ├── job.py | |
│ │ │ ├── opportunity.py | |
│ │ │ └── questionnaire.py | |
│ │ ├── message | |
│ │ │ ├── forms.py | |
│ │ │ ├── __init__.py | |
│ │ │ ├── models.py | |
│ │ │ └── views.py | |
│ │ ├── profile | |
│ │ │ ├── consts.py | |
│ │ │ ├── forms.py | |
│ │ │ ├── __init__.py | |
│ │ │ ├── models.py | |
│ │ │ ├── urls.py | |
│ │ │ └── views.py | |
│ │ ├── projects | |
│ │ │ ├── forms.py | |
│ │ │ ├── __init__.py | |
│ │ │ ├── models.py | |
│ │ │ └── views.py | |
│ │ ├── registration | |
│ │ │ ├── forms.py | |
│ │ │ ├── __init__.py | |
│ │ │ └── views.py | |
│ │ └── site | |
│ │ ├── forms.py | |
│ │ ├── __init__.py | |
│ │ ├── models.py | |
│ │ └── views.py | |
│ ├── babel.cfg | |
│ ├── config.py | |
│ ├── data | |
│ │ ├── countries.py | |
│ │ └── __init__.py | |
│ ├── extensions.py | |
│ ├── helpers.py | |
│ ├── __init__.py | |
│ ├── libs | |
│ │ ├── calverter.py | |
│ │ └── __init__.py | |
│ ├── media | |
│ │ ├── fonts | |
│ │ │ ├── arial.ttf | |
│ │ ├── statics | |
│ │ ├── temp | |
│ │ └── templates | |
│ │ ├── blue | |
│ ├── messages.pot | |
│ ├── translations | |
│ │ └── fa | |
│ │ └── LC_MESSAGES | |
│ │ ├── messages.mo | |
│ │ └── messages.po | |
│ └── utils | |
│ ├── activity.py | |
│ ├── auth.py | |
│ ├── date.py | |
│ ├── form.py | |
│ ├── __init__.py | |
│ ├── mail.py | |
│ ├── pdf.py | |
│ ├── template_filters.py | |
│ ├── template.py | |
│ └── text.py | |
├── gunicorn.conf | |
├── run.py | |
├── tree |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The 97th line is unnecessary.I think removing it is better :)