Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itzalak/gradle-template
https://github.com/itzalak/gradle-template
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/itzalak/gradle-template
- Owner: itzalak
- License: mit
- Created: 2021-11-01T19:25:50.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-24T20:28:00.000Z (9 months ago)
- Last Synced: 2024-04-18T17:11:30.920Z (8 months ago)
- Language: Kotlin
- Homepage:
- Size: 93.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gradle Template App
Simple project template for Gradle projects.
Template was built with intellij IDE in mind.
Contents:
- Gradle
- Groovy
- Kotlin
- Spock
- Spring
- Postgres
- Swagger-Springdoc## Postgresql Docker
To run the PostgreSQL docker image:
```shell
docker-compose up
```To manually access the db:
```shell
psql --host=localhost --port 5432 --dbname=default_db --username=username
```or
```shell
psql -h localhost -p 5432 -d default_db -U username
```### Warning
For this implementation we use a volume, if settings are changed, delete `pdb-data` folder.