A full-stack application for calculating salaries based on various parameters.
project/ ├── frontend/ # React frontend application ├── backend/ # Flask backend API └── docker-compose.yml # Docker composition file
Clone the repository: ```bash git clone https://github.com/yourusername/salary-calculator.git cd salary-calculator
Create a .env file in the root directory with necessary environment variables.
Build and run the containers: docker-compose up –build
The application will be available at:
Frontend: http://localhost Backend API: http://localhost/api
Local Development
1.Frontend:
cd frontend npm install npm start