Skip to content

Instantly share code, notes, and snippets.

@efazati
Last active March 21, 2024 18:19
Show Gist options
  • Star 95 You must be signed in to star a gist
  • Fork 19 You must be signed in to fork a gist
  • Save efazati/4545740 to your computer and use it in GitHub Desktop.
Save efazati/4545740 to your computer and use it in GitHub Desktop.
Python Flask Folders and Files structure
.
├── 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
@zjyExcelsior
Copy link

The 97th line is unnecessary.I think removing it is better :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment