Skip to content

Commit 671644d

Browse files
authored
Update README.md
1 parent 9d1ff7b commit 671644d

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Change into the project directory:
1818
cd SimpleFastPyAPI
1919
```
2020

21-
Install the project dependencies:
21+
Build Docker:
2222

2323
```bash
2424
docker build -t SimpleFastPyAPI .
@@ -30,6 +30,18 @@ Run the application:
3030
docker run -p 8000:8000 -v $(pwd)/users.db:/app/users.db SimpleFastPyAPI
3131
```
3232

33+
Install the project dependencies:
34+
35+
```bash
36+
pip install -r requirements.txt
37+
```
38+
39+
Run the application directly without Docker:
40+
41+
```bash
42+
uvicorn main:app --reload
43+
```
44+
3345
The application will start and be available at http://localhost:8000.
3446

3547
## API Endpoints

0 commit comments

Comments
 (0)