Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Added information about API_KEY
  • Loading branch information
MagnusS0 authored Sep 23, 2023
1 parent 0a70339 commit dd3880c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ cd movie_rec_system
### Run - with Docker 🐳

```sh
docker build -t movie_rec_system:latest -f Dockerfile .
docker run -p 8000:8000 movie_rec_system:latest
docker build --build-arg API_KEY=your_api_key -t movie_rec_system:latest -f Dockerfile .
docker run -e API_KEY=your_api_key -p 8000:8000 movie_rec_system:latest
```

### Run - locally 💻

> Remember to add your own API key to .env
1. Make sure you have `Poetry` innstalled in your enviornment
```sh
pip install poetry
Expand Down

0 comments on commit dd3880c

Please sign in to comment.