Updated gitignore

This commit is contained in:
droideparanoico
2022-10-08 12:27:21 +02:00
parent 6d6a14a061
commit df74ea18d8
2 changed files with 8 additions and 41 deletions

45
.gitignore vendored
View File

@@ -1,39 +1,6 @@
.gradle
build/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/
### IntelliJ IDEA ###
.idea/
*.iws
*.iml
*.ipr
out/
!**/src/main/**/out/
!**/src/test/**/out/
### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
### VS Code ###
.vscode/
### Mac OS ###
.DS_Store
/.gradle/
/.idea/
/build/
/gradle/
/gradlew.bat
/gradlew

View File

@@ -1,6 +1,6 @@
# CartChain
Proof of concept for an e-commerce API implementing blockchain technology by using a simple private chain (no mining)
Proof of concept for an e-commerce API implementing blockchain technology by using a simple private chain.
## How it works?
@@ -72,5 +72,5 @@ Within the [Makefile](Makefile) you can handle the entire flow to get everything
Go to [localhost:8080/swagger-ui/index.html](http://localhost:8080/swagger-ui/index.html) to see the API description.
As you can see on the [Makefile](Makefile) script and the [docker-Compose File](docker-compose.yml), the whole API
As you can see on the [Makefile](Makefile) script and the [docker-compose file](docker-compose.yml), the whole API
is containerized with docker and the API is using the internal DNS to connect with the PostgreSQL instance.