https://github.com/knowledgefactory4u/quarkus
Quarkus starter
https://github.com/knowledgefactory4u/quarkus
freemarker gradle h2db kotlin maven mongodb panache quarkus qute rdbms
Last synced: 2 months ago
JSON representation
Quarkus starter
- Host: GitHub
- URL: https://github.com/knowledgefactory4u/quarkus
- Owner: knowledgefactory4u
- License: gpl-3.0
- Created: 2021-10-08T16:10:07.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-07T16:32:39.000Z (over 3 years ago)
- Last Synced: 2025-03-25T17:23:37.426Z (3 months ago)
- Topics: freemarker, gradle, h2db, kotlin, maven, mongodb, panache, quarkus, qute, rdbms
- Language: Java
- Homepage: https://www.knowledgefactory.net/p/quarkus.html
- Size: 324 KB
- Stars: 20
- Watchers: 1
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Quarkus
Quarkus starter
How to run the application in your local machine?
Step 1: Clone or download the code
Step 2: Open the project using your favourite IDE. I am using IntelliJ IDEA.
Step 3: Build application jar file:
Maven: mvn clean package
or
Gradle: gradle build
Step 4: Start the application: java -jar quarkus-run.jar
####################################################################################
How to run the Angular - Frontend application in your local machine?
Download the dependencies using the following command
npm install
Run the frontend application using the following command
ng serve
Hit http://localhost:4200 link in a browser that will host this Angular 10 CRUD app.
###################################################################################
How to run the Vue - Frontend application in your local machine?
Download the dependencies using the following command
npm install
Run the frontend application using the following command
npm run serve
App running at
- Local:http://localhost:8080/###################################################################################
How to run the React JS - Frontend application in your local machine?
Download the dependencies using the following command
npm install
Run the frontend application using the following command
npm start