https://github.com/shanthi1710/billing-software
This is a full-stack retail billing system built with React for the frontend and Spring Boot for the backend. The application provides comprehensive billing functionality for retail businesses, including product management, invoice generation, and reporting features.
https://github.com/shanthi1710/billing-software
css docker java javascript jpa-hibernate lombok-maven mysql-database reactjs redux-toolkit s3-bucket spring-boot webdevtools
Last synced: about 2 months ago
JSON representation
This is a full-stack retail billing system built with React for the frontend and Spring Boot for the backend. The application provides comprehensive billing functionality for retail businesses, including product management, invoice generation, and reporting features.
- Host: GitHub
- URL: https://github.com/shanthi1710/billing-software
- Owner: shanthi1710
- Created: 2025-04-25T18:03:47.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-16T07:28:37.000Z (10 months ago)
- Last Synced: 2025-08-16T09:14:59.930Z (10 months ago)
- Topics: css, docker, java, javascript, jpa-hibernate, lombok-maven, mysql-database, reactjs, redux-toolkit, s3-bucket, spring-boot, webdevtools
- Language: JavaScript
- Homepage:
- Size: 2.45 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Billing Software (Spring Boot + React)
A full-stack billing application with Spring Boot backend and React frontend, containerized with Docker.
## Prerequisites
- Docker Desktop installed
- Java 21 JDK (for local development)
- Node.js (for frontend development)
## Docker Commands
### 1. Build and Start Containers
```bash
docker-compose up -d --build
mysql -h 127.0.0.1 -P 3307 -u root -p
docker-compose down -v
push on the docker hub and then use image
cd billingsoftware
docker build -t shanthi1710/billing-software-backend:latest .
cd client
docker build -t shanthi1710/billing-software-frontend:latest .
docker login -u shanthi1710
docker push shanthi1710/billing-software-backend:latest
docker push shanthi1710/billing-software-frontend:latest
docker-compose down -v
docker-compose up -d
clinet:-> http://localhost/
backend:-> http://localhost:8080/api/v1.0