Follow these steps to set up and run the Django project locally:
-
Create and Activate a Virtual Environment
python3 -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
-
Install Dependencies
pip install -r requirements.txt
-
Set Up the Django Project
cd pdf_extractor python manage.py migrate -
Run the Development Server
python manage.py runserver
-
Access the Application
Open your browser and go to
http://127.0.0.1:8000/to use the application.