This project is a simple movie web application, part of the MSIT curriculum.
- User Management: Create, update, delete, and view users.
- Movie Management: Add, update, delete, and view movies for each user.
-
Clone the repository:
git clone https://github.com/KarimTalbi/MovieWebApp.git -
Create a virtual environment:
python -m venv .venv source .venv/bin/activate # On Windows, use .venv\Scripts\activate
-
Install the dependencies:
pip install -r requirements.txt
-
Set up the environment variables: Create a
.envfile in the root directory of the project and add your OMDB API key:OMDB_API_KEY=your_api_keyYou can get an API key from http://www.omdbapi.com/apikey.aspx.
-
Run the application:
python app.py
-
Open your web browser and navigate to
http://127.0.0.1:5000.
