Skip to content

Commit 07fa5ee

Browse files
committed
[RELEASE] 1.0.0
1 parent 9cab788 commit 07fa5ee

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ bash scripts/lint.sh
6767
```
6868

6969

70-
### Making commits
70+
### Making PRs
7171

7272
Use these tags in PR title:
7373

README.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ $ pip install FastAPI-fastkit
3939

4040
### Create a new FastAPI project workspace environment immediately
4141

42-
Create a new FastAPI project workspace with:
42+
You can now start new FastAPI project really fast with FastAPI-fastkit!
43+
44+
Create a new FastAPI project workspace immediately with:
4345

4446
```console
4547
$ fastkit init
@@ -108,7 +110,9 @@ This command will create a new FastAPI project workspace environment with Python
108110

109111
### Add a new route to the FastAPI project
110112

111-
Add a new route to the FastAPI project with:
113+
`FastAPI-fastkit` makes it easy to expand your FastAPI project.
114+
115+
Add a new route endpoint to your FastAPI project with:
112116

113117
```console
114118
$ fastkit addroute <your-project-name> <new-route-name>
@@ -124,7 +128,11 @@ $ fastkit addroute <your-project-name> <new-route-name>
124128
```
125129

126130

127-
### Place a structured FastAPI project immediately
131+
### Place a structured FastAPI demo project immediately
132+
133+
You can also start with a structured FastAPI demo project.
134+
135+
Demo projects are consist of various tech stacks with simple item CRUD endpoints implemented.
128136

129137
Place a structured FastAPI demo project immediately with:
130138

@@ -159,6 +167,12 @@ FastAPI template project will deploy at '<your-project-path>'
159167
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
160168
```
161169

170+
To view the list of available FastAPI demos, check with:
171+
172+
```console
173+
$ fastkit list-templates
174+
```
175+
162176
## Significance of FastAPI-fastkit
163177

164178
FastAPI-fastkit aims to provide a fast and easy-to-use starter kit for new users of Python and FastAPI.

src/fastapi_fastkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.1.4"
1+
__version__ = "1.0.0"
22

33
import os
44

0 commit comments

Comments
 (0)