Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danielprinz/books
Backend REST API with Vert.x, Web UI with Vue.js
https://github.com/danielprinz/books
educational-project jdbc vertx vertx3 vuejs
Last synced: 3 months ago
JSON representation
Backend REST API with Vert.x, Web UI with Vue.js
- Host: GitHub
- URL: https://github.com/danielprinz/books
- Owner: danielprinz
- License: mit
- Created: 2019-08-04T18:28:53.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-02-21T00:21:06.000Z (12 months ago)
- Last Synced: 2024-10-10T20:55:30.918Z (4 months ago)
- Topics: educational-project, jdbc, vertx, vertx3, vuejs
- Language: Java
- Size: 28.3 KB
- Stars: 6
- Watchers: 2
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Books
The books applications shows how build a complete web application.
The technologies used are:
* Vert.x backend
* Postgres data store
* Vue.js frontendFull instructions about Vert.x can be found in my Udemy Course.
Please use my link to get the best offer:
https://www.udemy.com/course/reactive-web-applications-with-vertx-and-vuejs/?referralCode=EC1E0604CC44687A0E8A## Docker Image Setup with local registry
1. `docker run -d -p 5000:5000 --restart=always --name registry registry:2`
2. `docker login localhost:5000` => `testuser/testpassword`
3. `mvn compile jib:build`
4. `docker run -p 8888:8888 localhost:5000/com.danielprinz.udemy-books:1.0.0-SNAPSHOT`