fastbrick 0.4__tar.gz → 0.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fastbrick
3
- Version: 0.4
3
+ Version: 0.5
4
4
  Summary: A CLI tool for generating FastAPI projects and apps
5
5
  Home-page: UNKNOWN
6
6
  Author: Sandeep Singh Negi
@@ -57,17 +57,16 @@ fastbirck create-app my_app
57
57
  ```
58
58
  myproject/
59
59
  │── main.py # Entry point for FastAPI app
60
- │── routes.py # Contains 'custom routes'
61
- │── alembic.ini
60
+ │── routes.py # Contains 'app routes'
62
61
  │── models.py
63
62
  │── schemas.py
64
63
  │── middlewares/
65
64
  │ ├── middleware.py # Global middleware logic
66
65
  │── routers/ # API route modules
67
66
  │── settings/
67
+ │ ├── config.py # Database configuration
68
68
  │ ├── database.py # Database configuration
69
69
  │ ├── routing.py # Router configurations
70
- │── alembic/
71
70
  ```
72
71
 
73
72
  This structure ensures modularity and scalability for your FastAPI project. Adjust the folders and files as needed based on your project requirements.
@@ -41,17 +41,16 @@ fastbirck create-app my_app
41
41
  ```
42
42
  myproject/
43
43
  │── main.py # Entry point for FastAPI app
44
- │── routes.py # Contains 'custom routes'
45
- │── alembic.ini
44
+ │── routes.py # Contains 'app routes'
46
45
  │── models.py
47
46
  │── schemas.py
48
47
  │── middlewares/
49
48
  │ ├── middleware.py # Global middleware logic
50
49
  │── routers/ # API route modules
51
50
  │── settings/
51
+ │ ├── config.py # Database configuration
52
52
  │ ├── database.py # Database configuration
53
53
  │ ├── routing.py # Router configurations
54
- │── alembic/
55
54
  ```
56
55
 
57
56
  This structure ensures modularity and scalability for your FastAPI project. Adjust the folders and files as needed based on your project requirements.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fastbrick
3
- Version: 0.4
3
+ Version: 0.5
4
4
  Summary: A CLI tool for generating FastAPI projects and apps
5
5
  Home-page: UNKNOWN
6
6
  Author: Sandeep Singh Negi
@@ -57,17 +57,16 @@ fastbirck create-app my_app
57
57
  ```
58
58
  myproject/
59
59
  │── main.py # Entry point for FastAPI app
60
- │── routes.py # Contains 'custom routes'
61
- │── alembic.ini
60
+ │── routes.py # Contains 'app routes'
62
61
  │── models.py
63
62
  │── schemas.py
64
63
  │── middlewares/
65
64
  │ ├── middleware.py # Global middleware logic
66
65
  │── routers/ # API route modules
67
66
  │── settings/
67
+ │ ├── config.py # Database configuration
68
68
  │ ├── database.py # Database configuration
69
69
  │ ├── routing.py # Router configurations
70
- │── alembic/
71
70
  ```
72
71
 
73
72
  This structure ensures modularity and scalability for your FastAPI project. Adjust the folders and files as needed based on your project requirements.
@@ -7,7 +7,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
7
7
 
8
8
  setup(
9
9
  name="fastbrick",
10
- version="0.4",
10
+ version="0.5",
11
11
  author="Sandeep Singh Negi", # 👈
12
12
  author_email="sandeepnegi1710@gmail.com", # 👈
13
13
  description="A CLI tool for generating FastAPI projects and apps",
File without changes
File without changes