https://github.com/manjillama/clothing-manager
Simple sales manager Dashboard for small businesses specially clothing.
https://github.com/manjillama/clothing-manager
java postgresql spring spring-boot sql
Last synced: about 2 months ago
JSON representation
Simple sales manager Dashboard for small businesses specially clothing.
- Host: GitHub
- URL: https://github.com/manjillama/clothing-manager
- Owner: manjillama
- License: mit
- Created: 2021-05-29T17:05:49.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-29T17:09:01.000Z (about 5 years ago)
- Last Synced: 2025-06-25T20:02:30.024Z (12 months ago)
- Topics: java, postgresql, spring, spring-boot, sql
- Language: Java
- Homepage:
- Size: 708 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Project Introduction
Simple sales managing dashboard for small clothing business writted in Java (Spring Boot).
I created this project back when I was in college and total forgot about it. It's just today when I was cleaning up junks my personal laptop that I noticed all the past projects that I did back then. Nostalgia hit hard... Good times! haha.
## Tech Stacks
- Java Spring Boot
- PostgreSQL
- Angular.js
## Setup
### Clone the repository
```bash
# Clone with SSH
$ git clone git@github.com:manjillama/clothing-manager.git
# Or with HTTPS
$ git clone https://github.com/manjillama/clothing-manager.git
```
## Configuration
Navigate to `src/main/resources` directory and update the configuration with your own.
```
spring.jpa.database=POSTGRESQL
spring.datasource.platform=postgres
spring.datasource.url=jdbc:postgresql://localhost:5432/{{YOU_DB}}
spring.datasource.username=
spring.datasource.password=
# Admin username and password to login
username=manjiltamang
password=admin123
# Auto generates DDL
spring.jpa.generate-ddl=true
```