Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 897 Bytes

File metadata and controls

39 lines (26 loc) · 897 Bytes

Expense Management System

This project is an expense management system that consists of a Streamlit frontend application and a FastAPI backend server.

Structure

  • frontend: Contains the Streamlit application code.
  • backend: Contains the FastAPI backend server code.
  • tests: Contains the test cases for both frontend and backend.

Dashboard Preview

Expense Dashboard

Expense Dashboard

Expense Dashboard

Expense Dashboard

Expense Dashboard

Setup Instructions

  1. Clone this repository:

  2. Install dependencies::

     pip install -r requirements.txt
    
  3. Run the FastAPI server::

     uvicorn server.server:app --reload
    
  4. Run the Streamlit app::

     streamlit run frontend/app.py