Compare commits

..

No commits in common. "9bca1565c695136973d658bd43d6d1249275ac69" and "3f7e1b94b62c210d5527e3a3a74fd8008f7e4218" have entirely different histories.

2 changed files with 6 additions and 3 deletions

View File

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

View File

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