Discover Movies & Series
A Django MVP integrated with OMDB API for movie exploration
# Clone repository
git clone https://github.com/DevTroli/movies_omdb.git
cd omdb-explorer
# Create virtual environment
python -m venv .venv
source .venv/bin/activate # Linux/MacOS
# ou .venv\Scripts\activate # Windows
# Install dependencies
pip install -r requirements.txt
# Configure environment
echo "OMDB_API_KEY=sua_chave_aqui" > .env
# Run migrations
python manage.py migrate
# Start development server
python manage.py runserver
http://localhost:8000
.env
File:
OMDB_API_KEY=your_api_key_here
API Limitations (Free Tier):