You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 30, 2025. It is now read-only.
> Main Backend server hosted on Render. It is a REST API server built using **[FastAPI](https://fastapi.tiangolo.com/)** and **[Agno](https://docs.agno.com/introduction)**. It is hosted on Render.
10
-
> The server is responsible for handling all the requests from the frontend and processing them.
11
+
> Main Backend server hosted on Render. It is a REST API server built using **[FastAPI](https://fastapi.tiangolo.com/)** and **[Agno](https://docs.agno.com/introduction)**. It is hosted on Render.
12
+
> The server is responsible for handling all the requests from the frontend and processing them.
11
13
> It also interacts with the Agno AI to get the predictions for the stock prices.
The backend server can be locally deployed using Docker. Use the following command to build and run the server:
25
19
26
20
-**Build the Docker image**
27
-
```bash
21
+
22
+
```bash
28
23
docker-compose build
29
24
```
30
25
31
26
-**Run the Docker container**
27
+
32
28
```bash
33
29
docker-compose up
34
30
```
35
31
36
32
-**Access the server**
33
+
37
34
```bash
38
35
http://localhost:8000/
39
36
```
40
37
41
38
### API Documentation
39
+
42
40
The API documentation is available at the following URL:
43
41
44
42
```bash
45
43
http://localhost:8000/docs
46
44
```
45
+
47
46
This documentation provides a detailed overview of all the available endpoints, including their request and response formats. You can also test the endpoints directly from the documentation.
48
47
49
48
## Test the API
49
+
50
50
You can test the API using Postman or any other API testing tool. The following endpoints are available:
0 commit comments