sourabhtk37 / CodeShare

A django application for sharing code snippets.
GNU General Public License v3.0
3 stars 12 forks source link

Project Structure #58

Open aniketmaithani opened 6 years ago

aniketmaithani commented 6 years ago

My 0.02$ on this. :)

sourabhtk37 commented 6 years ago

I have been thinking of changing the project structure but few opinions:

The current project structure, which is a mess, is:

├── code_share
│   ├── api_app
│   │   └── migrations
│   ├── app_code_share
│   │   ├── migrations
│   │   ├── templates
│   │   │   ├── app_code_share
│   │   │   └── error
│   │   └── tests
│   ├── code_share
│   ├── static
│   │   ├── css
│   │   └── js
│   └── static_media
│       ├── admin
│       │   ├── css
│       │   ├── fonts
│       │   ├── img
│       │   └── js
│       ├── css
│       ├── js
│       └── rest_framework
│           ├── css
│           ├── docs
│           ├── fonts
│           ├── img
│           └── js
└── config

I find this opinion of structure to be good.