Compare commits

...

3 Commits

Author SHA1 Message Date
9bca1565c6
Update 2024-11-06 21:48:59 +04:00
c97da52761 Update 2024-11-06 20:20:15 +04:00
b6cf951943 Rename labels for clarity in index.html 2024-11-06 19:38:02 +04:00
2 changed files with 3 additions and 6 deletions

View File

@ -1,5 +1,3 @@
### Movier: Get Movie Recommendations Based on IMDb Data
Movier recommends movies based on the IMDb dataset by comparing them with movies you provide.
:warning: This project is not production-ready.
@ -12,11 +10,10 @@ This project uses non-commercial IMDb datasets, available at: [IMDb Datasets](ht
1. Rename the environment file:
Rename `/config/postgres/.env.example` to `/config/postgres/.env`:
```sh
mv ./config/postgres/.env.example ./config/postgres/.env
cp ./config/postgres/.env.example ./config/postgres/.env
```
2. Run with Docker Compose:
Use Docker Compose to start the application:
```sh
docker compose up
```

View File

@ -116,12 +116,12 @@
class="form-control mx-sm-3 weight" value="100" min="0" max="400">
</div>
<div class="col-md-3">
<label for="genres-weight">Genres Weight</label>
<label for="genres-weight">Genre Weight</label>
<input type="number" id="genres-weight" name="genres-weight"
class="form-control mx-sm-3 weight" value="100" min="0" max="400">
</div>
<div class="col-md-3">
<label for="nconsts-weight">Nconsts Weight</label>
<label for="nconsts-weight">Cast Weight</label>
<input type="number" id="nconsts-weight" name="nconsts-weight"
class="form-control mx-sm-3 weight" value="100" min="0" max="400">
</div>