We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d1ff7b commit 671644dCopy full SHA for 671644d
1 file changed
README.md
@@ -18,7 +18,7 @@ Change into the project directory:
18
cd SimpleFastPyAPI
19
```
20
21
-Install the project dependencies:
+Build Docker:
22
23
```bash
24
docker build -t SimpleFastPyAPI .
@@ -30,6 +30,18 @@ Run the application:
30
docker run -p 8000:8000 -v $(pwd)/users.db:/app/users.db SimpleFastPyAPI
31
32
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
42
+uvicorn main:app --reload
43
44
45
The application will start and be available at http://localhost:8000.
46
47
## API Endpoints
0 commit comments