diff --git a/README.md b/README.md
index 5826330..d2fe773 100644
--- a/README.md
+++ b/README.md
@@ -144,7 +144,7 @@ This structure helps separate the application logic, configuration files, test f
~$ apt-get -y update && apt-get -y upgrade && apt-get install -y --no-install-recommends ffmpeg
```
- **Windows (Win10)**
- - Follow Tutorial [here](htps://www.youtube.com/watch?v=IECI72XEox0)
+ - Follow Tutorial [here](https://www.youtube.com/watch?v=IECI72XEox0)
- Add FFmpeg to the system path.
8. **Run Flask App**
- In Debug Mode [port 8001]
@@ -152,7 +152,7 @@ This structure helps separate the application logic, configuration files, test f
~/sentiment-analysis-api$ python3 -m run
```
9. **Run API Documentation**
- - Access the API documentation at: http://localhost:8001/apidocs
+ - Access the API documentation at: http://localhost:8001/docs
###
Docker
@@ -170,17 +170,17 @@ This structure helps separate the application logic, configuration files, test f
```bash
~/sentiment-analysis-api$ docker build -t sentiment_analysis_api .
```
-6. **Start Docker Conatiner (Port 8001)**
+6. **Start Docker Container (Port 8001)**
- **New Container**
```bash
~/sentiment-analysis-api$ docker run -d --name sentiment_analysis_api_app -p 8001:8001 -v ./:/sentiment-analysis-api sentiment_analysis_api
```
- **Existing Container**
```bash
- ~/sentiment-analysis-api$ docker start --name sentiment_analysis_api_app
+ ~/sentiment-analysis-api$ docker start sentiment_analysis_api_app
```
7. **Run API Documentation**
- - Access the API documentation at: http://localhost:8001/apidocs
+ - Access the API documentation at: http://localhost:8001/docs
@@ -209,12 +209,12 @@ This structure helps separate the application logic, configuration files, test f
~/sentiment-analysis-api$ docker compose start
```
6. **Run API Documentation**
- - Access the API documentation at: http://localhost:8001/apidocs
+ - Access the API documentation at: http://localhost:8001/docs
##
API Documentation
-You can access the API documentation at [http://localhost:8001/apidocs](http://localhost:8001/apidocs) after running the Flask App.
+You can access the API documentation at [http://localhost:8001/docs](http://localhost:8001/docs) after running the Flask App.
### Postman Collection
@@ -281,10 +281,10 @@ This repository is part of the [Google Summer of Code (GSoC) 2024](https://summe
- GSoC'24 Project Page: [Sentiment Analysis API Project GSoC 24 Program](https://summerofcode.withgoogle.com/programs/2024/projects/V469U9cf)
- Progress Tracking Docs: [GSOC'24 Project Progress and Follow Up Sheet](https://docs.google.com/spreadsheets/d/1wnTACVlsw_JWCWV70Log1DFwilxwmj_azB3TekGA3OY/edit?usp=sharing)
- Meetings Presentations: [Slides](https://drive.google.com/drive/u/1/folders/1SMujWE0p7Xz_CaS0e9qKkLRcDt7YX729)
-- Main Reposotory for the Project: [sentiment-analysis-api Repo](https://github.com/ruxailab/sentiment-analysis-api)
+- Main Repository for the Project: [sentiment-analysis-api Repo](https://github.com/ruxailab/sentiment-analysis-api)
- Integration to [RUXAILAB](https://github.com/ruxailab/RUXAILAB) PR Requests:
- [PR #533](https://github.com/ruxailab/RUXAILAB/pull/533)
-- Wikkis:
+- Wikis:
- [Deployment Study Guide](https://github.com/ruxailab/sentiment-analysis-api/wiki/Deployment-Study-Guide)
- [Speech2Text Tools Survey](https://github.com/ruxailab/sentiment-analysis-api/wiki/Speech2Text-Tools-Survey)
- [VueJs and Vuetify Study Guide (RUXAILAB Repo)](https://github.com/ruxailab/RUXAILAB/wiki/VueJs-and-Vuetify-Study-Guide)
diff --git a/docker-compose.yml b/docker-compose.yml
index b92c5f2..8c957a4 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -6,6 +6,6 @@ services:
dockerfile: Dockerfile
image: sentiment_analysis_api # Tag for the image
ports:
- - "8001:8001" # Map port 8080 of the container to port 8080 on the host
+ - "8001:8001" # Map port 8001 of the container to port 8001 on the host
volumes:
- .:/sentiment-analysis-api # Bind mount for project
\ No newline at end of file