Updated to correct directory structure Sources>Apps

The documentaiton stated >App>main.swift
when I did the process i noted it was >Sources>App>main.swift

Confused me for a bit so I thought it was worth an update
This commit is contained in:
symonty 2016-10-11 14:08:23 -07:00 committed by GitHub
parent 8dd4160aa9
commit a1c015fbd3
1 changed files with 9 additions and 7 deletions

View File

@ -20,11 +20,12 @@ Vapor's folder structure will probably look familiar to you if you have worked w
```
.
├── App
│ └── Controllers
│ └── Middleware
│ └── Models
│ └── main.swift
├── Sources
│ └── App
│ └── Controllers
│ └── Middleware
│ └── Models
│ └── main.swift
├── Public
├── Resources
│ └── Views
@ -35,8 +36,9 @@ For our Hello, World project, we will be focusing on the `main.swift` file.
```
.
└── App
└── main.swift
└── Sources
└── App
└── main.swift
```
Note: The `vapor new` command creates a new project with examples and comments about how to use the framework. You can delete these if you want.