A simple CRUD (Create, Read, Update, Delete) application for managing health records. Built with Flask and SQLAlchemy.
- Create new health records
- View existing health records
- Update health record information
- Delete health records
- Responsive web interface
- Clone this repository
- Create a virtual environment:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
- Install dependencies:
pip install -r requirements.txt
- Start the Flask development server:
python app.py
- Open your browser and navigate to
http://localhost:5000
To run the test suite:
pytest test_app.pyapp.py: Main application file with routes and database modelstemplates/: HTML templates for the web interfacetest_app.py: Unit testsrequirements.txt: Project dependencies