https://github.com/ahmd-nabil/bazaar
Spring-Boot RESTful ecommerce API. Angular front-end: https://github.com/ahmd-nabil/bazaar-frontend
https://github.com/ahmd-nabil/bazaar
angular ecommerce restful-api spring-security springdata-jpa springmvc
Last synced: about 2 months ago
JSON representation
Spring-Boot RESTful ecommerce API. Angular front-end: https://github.com/ahmd-nabil/bazaar-frontend
- Host: GitHub
- URL: https://github.com/ahmd-nabil/bazaar
- Owner: ahmd-nabil
- Created: 2023-06-13T05:52:51.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-18T03:22:45.000Z (about 1 year ago)
- Last Synced: 2025-01-17T21:43:56.752Z (3 months ago)
- Topics: angular, ecommerce, restful-api, spring-security, springdata-jpa, springmvc
- Language: Java
- Homepage:
- Size: 122 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bazaar - An eCommerce Application
Bazaar is a modern eCommerce application built using Java Spring Boot for the backend and Angular for the frontend.## Features
- [x] User authentication and authorization with Okta.
- [x] Product catalog with search and filtering options.
- [x] Shopping cart functionality.
- [ ] Secure payment gateway integration.
- [x] Order management and tracking.
- [ ] User profile management.
- [ ] Admin dashboard for managing products, orders, and users.
- [x] Responsive design for seamless user experience across devices.## Technologies Used
- Backend
- Java 17
- Spring Boot 3.1.0
- Spring Data JPA
- Spring MVC
- MySQL (for production)
- OpenCSV for CSV parsing (for development)
- H2 Database (for development)
- [Frontend](https://github.com/ahmd-nabil/bazaar-frontend)
- Angular
- HTML, CSS, Bootstrap, TypeScript## Setup
### Prerequisites
- JDK 17 or higher
- Maven
- Node.js and npm
- Angular CLI (installed globally)
- MySQL database1. Clone this repository to your local machine:
```bash
git clone https://github.com/your-username/bazaar.git
cd bazaar
```
2. Configure MySQL database settings in application.properties under `src/main/resources`.
3. Build and run the backend using Maven:
```bash
mvn spring-boot:run
```4. Navigate to the [frontend](https://github.com/ahmd-nabil/bazaar-frontend) directory:
```bash
cd ../bazaar-frontend
```
5. Install frontend dependencies:
```bash
npm install
```
6. Run the frontend:
```bash
ng serve
```
7. Access the application in your browser at http://localhost:4200.## Contributing
Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request.