Open
Conversation
…allation instructions
…ate .gitignore to ignore .env files
…atabase configuration
…s for host and port
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces the initial setup for the new React + TypeScript client application for the Chart Bubble Graph project. It establishes the project's structure, configures tooling, and implements basic API integration for country data. The changes also update documentation and environment variable handling to reflect the new frontend architecture.
Project structure and tooling setup:
client/package.json,client/index.html,client/tsconfig*.json,client/vite.config.ts,client/eslint.config.js,client/.gitignore) and Tailwind CSS for styling. [1] [2] [3] [4] [5] [6] [7] [8] [9]API integration and type definitions:
client/src/api/config/axios.config.ts), defined API endpoints (client/src/api/constant/endpoints.const.ts), and added a service for fetching country data (client/src/api/services/countries-data.service.ts) with corresponding TypeScript types (client/src/api/types/data.types.ts). [1] [2] [3] [4]App entry point and basic rendering:
client/src/main.tsx,client/src/App.tsx). [1] [2]Documentation and environment variables:
ReadMe.mdfor the client, reflecting the updated stack and instructions, and removed the oldREADME.mdand.env.example. Introducedclient/.env.examplefor frontend environment variables. [1] [2] [3] [4]These changes lay the foundation for further frontend development, including chart visualization, AI summary, and PDF export features.