Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ahmedabougabal/fullstackswe_assignment
Financial Data Filtering App
https://github.com/ahmedabougabal/fullstackswe_assignment
axios-react chadcnui docker docker-compose dockerfile fintech-api front-end-development react typescript vite
Last synced: 17 days ago
JSON representation
Financial Data Filtering App
- Host: GitHub
- URL: https://github.com/ahmedabougabal/fullstackswe_assignment
- Owner: ahmedabougabal
- Created: 2025-01-19T05:11:00.000Z (17 days ago)
- Default Branch: main
- Last Pushed: 2025-01-19T12:17:17.000Z (17 days ago)
- Last Synced: 2025-01-19T12:25:18.725Z (17 days ago)
- Topics: axios-react, chadcnui, docker, docker-compose, dockerfile, fintech-api, front-end-development, react, typescript, vite
- Language: TypeScript
- Homepage:
- Size: 85.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Financial Data Filtering App 💸 📊 💵
![Tests Passing](https://img.shields.io/badge/tests-passing-brightgreen)
__**Developed an elegant React-based web application using Chadcn components, featuring beautiful React charts for visualizing and analyzing Apple Inc.'s financial data via Public API.**__
[![Deployment](https://img.shields.io/badge/Deployed%20App-View%20Here-brightgreen?style=for-the-badge)](https://full-stack-swe-assignment-git-d-6c8049-ahmedabougabals-projects.vercel.app/)
![TypeScript](https://img.shields.io/badge/TypeScript-82.1%25-blue?style=for-the-badge&logo=typescript)
![CSS](https://img.shields.io/badge/CSS-10.1%25-orange?style=for-the-badge&logo=css3)
![JavaScript](https://img.shields.io/badge/JavaScript-6.1%25-yellow?style=for-the-badge&logo=javascript)
![Other](https://img.shields.io/badge/Other-1.7%25-lightgrey?style=for-the-badge)![image](https://github.com/user-attachments/assets/b1ddfb05-df31-4fca-ada1-98d46e37081f)
![image](https://github.com/user-attachments/assets/94d587bf-64a8-46bd-ae3f-6ca56cec8d0f)
![image](https://github.com/user-attachments/assets/24ec1a1e-0070-4728-8db3-f01abfcbe77f)
![image](https://github.com/user-attachments/assets/fb038386-a85f-4c1f-abe3-26c045951265)
![image](https://github.com/user-attachments/assets/0b0c706d-9a39-4a9c-845e-a79b155ed7d2)
![image](https://github.com/user-attachments/assets/2f76d0d3-638f-4ea6-8f0d-6e8cc644c561)
## Features
- View Apple Inc.'s annual income statements
- Filter data by date range, revenue range, and net income range
- Sort data by date, revenue, and net income
- Responsive design for both desktop and mobile
- Docker support for easy deployment and easier local installation## Prerequisites
- Node.js 20.x or later
- npm 9.x or later
- Docker (optional)## Setup Instructions
### Local Development
1. Clone the repository
2. Create a `.env` file in the root directory with the following content:
```
VITE_FMP_API_KEY=your_api_key
VITE_API_BASE_URL=https://financialmodelingprep.com/api/v3
```
3. Install dependencies:
```bash
npm install
```
4. Start the development server:
```bash
npm run dev
```### Docker Setup
1. Make sure Docker and Docker Compose are installed
2. Build and run the container:
```bash
docker compose up --build -d
```The app will be available at `http://localhost:5173`
## Project Structure
```
financial-filter/
├── src/
│ ├── components/ # React components
│ ├── services/ # API services
│ ├── types/ # TypeScript interfaces
│ └── utils/ # Utility functions
├── Dockerfile # Docker configuration
├── docker-compose.yml # Docker Compose configuration
└── .env # Environment variables
```## Available Scripts
- `npm run dev` - Start development server
- `npm run build` - Build for production
- `npm run preview` - Preview production build## Technologies Used
- React + TypeScript
- Vite
- Tailwind CSS
- Docker
- Financial Modeling Prep API