Folder Structure
Understand the details of the application's folder structure in this lesson.
We'll cover the following...
General project structure
Before starting the project, let’s discuss the overall project folder structure. This is a topic that tends to not have a definitive best practice and is mostly up to personal preference. But for the purpose of this course, the general folder structure of the application will look like this:
bookapp/
├── .git/
├── client/
│ ├── .git/
│ ├── src/
│ │ ├── common/
│ │ ├── main/
│ │ ├── static/
│ │
...