This project is a simple Mortgage Calculator built using Flask to visually represent the loan balance over time. It allows users to calculate mortgage details with different variables.
Mortgage calculator that computes loan details.
Frontend built with HTML, JavaScript, and CSS.
Backend powered by Python and Flask.
Make sure you have the following installed:
Python 3.x
pip (Python package manager)
Flask: Web framework for building the application.
Clone the Repository
Clone the repository to your local machine using the following command:
bash
Copy
git clone https://github.com/xTailsx/mortgage-calc.git
Navigate to the project directory and install the required Python libraries:
bash
Copy
cd mortgage-calculator
pip install -r requirements.txt
If you prefer using a virtual environment, create and activate it:
For macOS/Linux:
bash
Copy
python3 -m venv venv
source venv/bin/activate
For Windows:
bash
Copy
python -m venv venv
.\venv\Scripts\activate
To start the Flask server, run the following command:
bash Copy python app.py The application should now be accessible in your browser at http://127.0.0.1:5000/.