https://github.com/mindexpert7546/pdf-to-html-converter
https://github.com/mindexpert7546/pdf-to-html-converter
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mindexpert7546/pdf-to-html-converter
- Owner: mindexpert7546
- Created: 2025-06-01T08:17:21.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-06-01T11:02:27.000Z (5 months ago)
- Last Synced: 2025-06-01T16:52:41.585Z (5 months ago)
- Language: Python
- Size: 28.3 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# General Prerequisites:
## Backend :
1. Python 3.x must be installed recommended (Python 3.12.4)
2. pip and git should be available in your system path## Fronend :
1. Node js Latest recommended (v22.15.0)
2. Install Angular CLI
```
npm install -g @angular/cli
```## Screenshot:

# How to run the backend :
## 💻 Windows
```
git clone https://github.com/mindexpert7546/pdf-to-html-converter.git
cd pdf-to-html-converter\backend
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
set FLASK_APP=main.py
set FLASK_ENV=development
flask run
```## 🍎 macOS / 🐧 Linux
```
git clone https://github.com/mindexpert7546/pdf-to-html-converter.git
cd pdf-to-html-converter/backend
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
export FLASK_APP=main.py
export FLASK_ENV=development
flask run
```# How to run Frontend :
## 📂 Step-by-Step (All OS)
### Step 1: Navigate to the frontend folder
```
cd pdf-to-html-converter/frontend
```
### Step 2: Install dependencies
```
npm install --f
```
### Step 3: Run the Angular development server
```
npm start
```