https://github.com/luisfelipepoma/movies_recomender_with_golang
https://github.com/luisfelipepoma/movies_recomender_with_golang
concurrent-programming distributed-systems go recomendation-system
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/luisfelipepoma/movies_recomender_with_golang
- Owner: LuisFelipePoma
- License: cc0-1.0
- Created: 2024-10-25T00:33:20.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-11-18T23:59:36.000Z (5 months ago)
- Last Synced: 2024-12-15T05:38:56.584Z (4 months ago)
- Topics: concurrent-programming, distributed-systems, go, recomendation-system
- Language: TypeScript
- Homepage:
- Size: 51.7 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Movies App Recomender with Golang using Distributed and Concurrent Programming
---
---
## Index
- [Movies App Recomender with Golang using Distributed and Concurrent Programming](#movies-app-recomender-with-golang-using-distributed-and-concurrent-programming)
- [Index](#index)
- [Dataset](#dataset)
- [How to Use](#how-to-use)
- [How it Works](#how-it-works)---
## Dataset
[MovieLens Dataset](https://grouplens.org/datasets/movielens/latest/)## How to Use
1. Clone the repository
```bash
git clone [email protected]:LuisFelipePoma/Movies_Recomender_With_Golang.git
```2. Set up your `VITE_API_TMDB` in `src\docker-compose.yml`
```yml
# App Web (FRONTEND)
app:
build:
context: ./app
dockerfile: Dockerfile
environment:
- VITE_API_URL=http://127.0.0.1:3000/api
- VITE_API_TMDB=--YOUR-API-KEY--
ports:
- "4321:4321"
networks:
- app
depends_on:
- api
```3. Run the next command to start the project in `src\`
```bash
docker-compose --build up
```## How it Works