https://github.com/cbcballestas/gestion-clientes-backend
Backend para sistema de gestión de clientes - Curso Angular & Spring Boot: Creando web app full stack, se usa PostgreSQL como motor de base de datos
https://github.com/cbcballestas/gestion-clientes-backend
java postgresql postgresql-database spring spring-boot
Last synced: about 2 months ago
JSON representation
Backend para sistema de gestión de clientes - Curso Angular & Spring Boot: Creando web app full stack, se usa PostgreSQL como motor de base de datos
- Host: GitHub
- URL: https://github.com/cbcballestas/gestion-clientes-backend
- Owner: cbcballestas
- Created: 2022-11-10T06:28:10.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-04T04:49:39.000Z (over 3 years ago)
- Last Synced: 2025-06-20T23:03:30.634Z (about 1 year ago)
- Topics: java, postgresql, postgresql-database, spring, spring-boot
- Language: Java
- Homepage:
- Size: 116 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GestionClientesBACKEND
Backend para sistema de gestión de clientes, curso Angular & Spring Boot: Creando web app full stack, se usa como motor de base de datos PostgreSQL
## Requirements
- [JDK 11](https://www.oracle.com/co/java/technologies/javase/jdk11-archive-downloads.html)
- [Maven 3](https://maven.apache.org/)
- PostgreSQL
You will need to set up your database (or create your own) with the following configuration
``` properties
spring.datasource.url=jdbc:postgresql://localhost:5433/db_name
spring.datasource.username=
spring.datasource.password=
spring.datasource.driver-class-name=org.postgresql.Driver
```
## Run application
There are several ways to run a Spring Boot application in your local machine. The most common way is executing `main` method in `com.cballestas.springboot.backend.apirest.SpringBootBackendApirestApplication` class from your IDE
Alternative you can use [Spring Boot Maven plugin](https://docs.spring.io/spring-boot/docs/current/maven-plugin/reference/htmlsingle), just running:
```shell
mvn spring-boot:run
```
## Running port
- default spring boot config
http://localhost:8088
## Download Frontend project
You can download front-end project at [gestion-clientes-frontend](https://github.com/cbcballestas/gestion-clientes-frontend)