Skip to content

Commit c7561d4

Browse files
authored
Release version 0.1.4 📣
Changed project architecture
2 parents ce0ef14 + 6e87333 commit c7561d4

12 files changed

+98
-63
lines changed

README.md

+17-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
**Source Code**: View it on [Github](https://github.com/ycd/manage-fastapi/)
2929

30-
30+
**Installation**: `pip install manage-fastapi`
3131
---
3232

3333

@@ -44,12 +44,19 @@
4444
<img src="docs_assets/startproject.png" width=700>
4545

4646

47-
## Example folder structure for more check [documentation](https://ycd.github.io/manage-fastapi/)
47+
## Example folder structure with two commands :open_file_folder:
48+
49+
```
50+
manage-fastapi startproject fastproject
51+
manage-fastapi startapp v1
4852
```
49-
newproject/
53+
54+
55+
```
56+
fastproject/
5057
├── __init__.py
5158
├── main.py
52-
├── newproject
59+
├── core
5360
│   ├── models
5461
│   │   ├── database.py
5562
│   │   └── __init__.py
@@ -79,6 +86,12 @@ newproject/
7986

8087
### Latest Changes
8188

89+
### 0.1.4
90+
91+
* Changed project architecture
92+
* Increased travis tests
93+
94+
8295
### 0.1.3
8396

8497
* Make database optional

docs/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@
4040

4141
## Example folder structure 📦
4242
```
43-
newproject/
43+
fastproject/
4444
├── __init__.py
4545
├── main.py
46-
├── newproject
46+
├── core
4747
│   ├── models
4848
│   │   ├── database.py
4949
│   │   └── __init__.py

docs/managing_apps/startapp.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ Application v1 created successfully!
1717
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.
1818

1919
```python
20-
newproject/
20+
fastproject/
2121
├── __init__.py
2222
├── main.py
23-
├── newproject
23+
├── core
2424
│   ├── models
2525
│   │   ├── database.py
2626
│   │   └── __init__.py
@@ -41,7 +41,7 @@ newproject/
4141
└── __init__.py
4242
```
4343

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.
4545

4646
In our `endpoints` folder we are going create all the endpoints for this app, also `endpoints.py` comes with a basic Hello world router,
4747

docs/managing_projects/startproject.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ To start a new project with Manage FastAPI, you can use this:
33

44
* `manage-fastapi startproject [project-name]` - Create a new project.
55

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**
77

88
```shell
9-
manage-fastapi startproject newproject
9+
manage-fastapi startproject fastproject
1010

11-
Project newproject created successfully!
11+
Project fastproject created successfully!
1212
```
1313

1414
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.
1515

1616
```shell
17-
newproject/
17+
fastproject/
1818
├── __init__.py
1919
├── main.py
20-
├── newproject
20+
├── core
2121
│   ├── models
2222
│   │   ├── database.py
2323
│   │   └── __init__.py
@@ -35,8 +35,8 @@ Our **`main.py`** gonna be our controller. It will include all the routers other
3535
from fastapi import FastAPI
3636
from fastapi.middleware.cors import CORSMiddleware
3737

38-
from newproject.settings import settings
39-
from newproject.models.database import database
38+
from fastproject.settings import settings
39+
from fastproject.models.database import database
4040

4141
app = FastAPI(title=settings.PROJECT_NAME)
4242

@@ -68,7 +68,7 @@ from pydantic import BaseSettings, AnyHttpUrl, HttpUrl, validator
6868

6969

7070
class Settings(BaseSettings):
71-
PROJECT_NAME: str = "newproject"
71+
PROJECT_NAME: str = "fastproject"
7272

7373
BACKEND_CORS_ORIGINS: List[AnyHttpUrl] = [
7474
"http://localhost",
@@ -113,7 +113,7 @@ In **`models/database.py`** we create all our database stuff, If you don't need
113113

114114
```python
115115
import sqlalchemy
116-
from newproject.settings import settings
116+
from fastproject.settings import settings
117117
import databases
118118

119119
database = databases.Database(settings.DATABASE_URL)

docs/release-notes.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
### Latest Changes
44

5+
### 0.1.4
6+
7+
* Changed project architecture
8+
* Increased travis tests
9+
10+
511
### 0.1.3
612

713
* Make database optional

manage_fastapi/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.3"
1+
__version__ = "0.1.4"

manage_fastapi/templates.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,11 @@ def test_read_items():
131131
tortoise_main_template = """from fastapi import FastAPI
132132
from fastapi.middleware.cors import CORSMiddleware
133133
134-
from {project_name}.{project_name}.models.database import Example
134+
from {project_name}.core.models.database import Example
135135
from tortoise.contrib.fastapi import HTTPNotFoundError, register_tortoise
136136
137137
138-
from {project_name}.{project_name}.settings import settings
138+
from {project_name}.core.settings import settings
139139
140140
app = FastAPI(title=settings.PROJECT_NAME)
141141
@@ -182,7 +182,7 @@ class PydanticMeta:
182182
empty_main_template = """from fastapi import FastAPI
183183
from fastapi.middleware.cors import CORSMiddleware
184184
185-
from {project_name}.settings import settings
185+
from {project_name}.core.settings import settings
186186
187187
if settings.BACKEND_CORS_ORIGINS:
188188
app.add_middleware(
@@ -199,8 +199,8 @@ class PydanticMeta:
199199
async_sql_main_template = """from fastapi import FastAPI
200200
from fastapi.middleware.cors import CORSMiddleware
201201
202-
from {project_name}.{project_name}.settings import settings
203-
from {project_name}.{project_name}.models.database import database
202+
from {project_name}.core.settings import settings
203+
from {project_name}.core.models.database import database
204204
205205
app = FastAPI(title=settings.PROJECT_NAME)
206206
@@ -224,7 +224,7 @@ async def disconnect_database():
224224
"""
225225

226226
async_sql_database_template = """import sqlalchemy
227-
from {project_name}.{project_name}.settings import settings
227+
from {project_name}.core.settings import settings
228228
import databases
229229
230230
database = databases.Database(settings.DATABASE_URL)
@@ -246,8 +246,8 @@ async def disconnect_database():
246246
mongo_main_template = """from fastapi import FastAPI
247247
from fastapi.middleware.cors import CORSMiddleware
248248
249-
from {project_name}.{project_name}.settings import settings
250-
from {project_name}.{project_name}.models.utils import connect_to_mongo, close_mongo_connection
249+
from {project_name}.core.settings import settings
250+
from {project_name}.core.models.utils import connect_to_mongo, close_mongo_connection
251251
252252
app = FastAPI()
253253
@@ -283,7 +283,7 @@ async def get_database() -> AsyncIOMotorClient:
283283
mongo_utils_template = """import logging
284284
285285
from motor.motor_asyncio import AsyncIOMotorClient
286-
from {project_name}.{project_name}.models.database import db
286+
from {project_name}.core.models.database import db
287287
288288
logger = logging.getLogger(__name__)
289289

manage_fastapi/tests/test_utils_startapp.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from typer.testing import CliRunner
2-
2+
import os
33
from manage_fastapi.main import app
44

55
runner = CliRunner()
@@ -9,6 +9,9 @@ def test_startapp_single():
99
result = runner.invoke(app, ["startapp", "myapp"])
1010
assert result.exit_code == 0
1111
assert "Application myapp created successfully!" in result.stdout
12+
os.path.exists("./myapp")
13+
os.path.exists("./tests/myapp")
14+
os.path.exists("./myapp/endpoints")
1215

1316

1417
def test_startapp_duplicate():

manage_fastapi/tests/test_utils_startproject.py

+23-5
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,38 @@
22

33
from manage_fastapi.main import app
44

5+
import os
6+
57
runner = CliRunner()
68

79

810
def test_startproject_single():
9-
result = runner.invoke(app, ["startproject", "myproject"], "0")
11+
result = runner.invoke(app, ["startproject", "test_one"], "0")
12+
result_two = runner.invoke(app, ["startproject", "test_two"], "1")
1013
assert result.exit_code == 0
1114
assert (
12-
"Project myproject created successfully!\nWe created requirements file for your project needs."
15+
"Project test_one created successfully!\nWe created requirements file for your project needs."
1316
in result.stdout
1417
)
18+
assert result_two.exit_code == 0
19+
assert (
20+
"Project test_two created successfully!\nWe created requirements file for your project needs."
21+
in result_two.stdout
22+
)
23+
assert os.path.isdir("./test_one")
24+
assert os.path.isdir("./test_one/core")
25+
assert os.path.isdir("./test_one/core/models")
26+
assert os.path.isdir("./test_one/core/schemas")
27+
assert os.path.isdir("./test_two")
28+
assert os.path.isdir("./test_two/core")
29+
assert os.path.isdir("./test_two/core/models")
30+
assert os.path.isdir("./test_two/core/schemas")
1531

1632

1733
def test_startproject_duplicate():
18-
result = runner.invoke(app, ["startproject", "myproject"], "2")
34+
result = runner.invoke(app, ["startproject", "test_one"], "2")
35+
result_two = runner.invoke(app, ["startproject", "test_two"], "9")
1936
assert result.exit_code == 0
20-
assert "Project myproject already exists!" in result.stdout
21-
37+
assert "Project test_one already exists!" in result.stdout
38+
assert result_two.exit_code == 0
39+
assert "Project test_two already exists!" in result_two.stdout

manage_fastapi/tests/test_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version():
5-
assert __version__ == "0.1.3"
5+
assert __version__ == "0.1.4"

0 commit comments

Comments
 (0)