This Django project serves as a backend for managing and serving movie stills.
-
Clone the repository:
git clone https://github.com/yourusername/movie_stills.git cd movie_stills
-
Create a virtual environment:
python3 -m venv movie_stills_env
-
Activate the virtual environment:
source movie_stills_env/bin/activate # On Unix or MacOS # movie_stills_env\Scripts\activate.bat # On Windows
-
Install dependencies:
pip install -r requirements.txt
-
Apply migrations:
python3 manage.py migrate
-
Run the development server:
python3 manage.py runserver