You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/managing_apps/startapp.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -17,10 +17,10 @@ Application v1 created successfully!
17
17
Let's see what it created. Now we have a new folder called **v1** and another folder called **v1** under our **tests** folder. Let's see what they have.
18
18
19
19
```python
20
-
newproject/
20
+
fastproject/
21
21
├── __init__.py
22
22
├── main.py
23
-
├── newproject
23
+
├── core
24
24
│ ├── models
25
25
│ │ ├── database.py
26
26
│ │ └── __init__.py
@@ -41,7 +41,7 @@ newproject/
41
41
└── __init__.py
42
42
```
43
43
44
-
In our **`myproject/myapp`** we have new **1 directory and 4 files**, let's see what they have.
44
+
In our **`fastproject/v1`** we have new **1 directory and 4 files**, let's see what they have.
45
45
46
46
In our `endpoints` folder we are going create all the endpoints for this app, also `endpoints.py` comes with a basic Hello world router,
Copy file name to clipboardexpand all lines: docs/managing_projects/startproject.md
+9-9
Original file line number
Diff line number
Diff line change
@@ -3,21 +3,21 @@ To start a new project with Manage FastAPI, you can use this:
3
3
4
4
*`manage-fastapi startproject [project-name]` - Create a new project.
5
5
6
-
This will create create **4 directories and 8 files** for you. Let's see what it includes, for instance i'm creating a new project called **newproject**
6
+
This will create create **4 directories and 8 files** for you. Let's see what it includes, for instance i'm creating a new project called **fastproject**
7
7
8
8
```shell
9
-
manage-fastapi startproject newproject
9
+
manage-fastapi startproject fastproject
10
10
11
-
Project newproject created successfully!
11
+
Project fastproject created successfully!
12
12
```
13
13
14
14
The command we ran above, created a `main.py` that will include all our external app's. A folder called **models** for our database stuff, another folder called **schemas** for our Pydantic models etc and a `settings.py` file.
15
15
16
16
```shell
17
-
newproject/
17
+
fastproject/
18
18
├── __init__.py
19
19
├── main.py
20
-
├── newproject
20
+
├── core
21
21
│ ├── models
22
22
│ │ ├── database.py
23
23
│ │ └── __init__.py
@@ -35,8 +35,8 @@ Our **`main.py`** gonna be our controller. It will include all the routers other
35
35
from fastapi import FastAPI
36
36
from fastapi.middleware.cors import CORSMiddleware
0 commit comments