https://github.com/redhat-developer/code.quarkus.redhat.com
code.quarkus.redhat.com
https://github.com/redhat-developer/code.quarkus.redhat.com
Last synced: 7 months ago
JSON representation
code.quarkus.redhat.com
- Host: GitHub
- URL: https://github.com/redhat-developer/code.quarkus.redhat.com
- Owner: redhat-developer
- License: apache-2.0
- Created: 2020-02-05T08:58:11.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2025-04-22T06:47:27.000Z (9 months ago)
- Last Synced: 2025-06-05T05:30:26.829Z (7 months ago)
- Language: SCSS
- Homepage: https://code.quarkus.redhat.com
- Size: 1.63 MB
- Stars: 4
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Red Hat Code Quarkus App
[](https://github.com/redhat-developer/code.quarkus.redhat.com/actions/workflows/build.actions.yml)
# Development
Api is located in `src/main/java`
UI is located in `src/main/resources/web/`
Use this command to start dev mode on: http://0.0.0.0:8080 (Api and UI).
```bash
(BOOTSTRAP_MAVEN_REPOS=redhat-ga BOOTSTRAP_MAVEN_REPO_REDHAT_GA_URL=https://maven.repository.redhat.com/ga quarkus dev)
```
Build the library locally:
```bash
quarkus build
```
After building, use this command to start the app in production mode:
```
(BOOTSTRAP_MAVEN_REPOS=redhat-ga BOOTSTRAP_MAVEN_REPO_REDHAT_GA_URL=https://maven.repository.redhat.com/ga java -jar target/quarkus-app/quarkus-run.jar)
```
# Docker
```bash
docker run -i --rm -p 8080:8080 --env-file .env quay.io/redhat-developer/code-quarkus:latest
```
# OpenShift
The template: [./deploy/openshift/code-quarkus.yaml](./deploy/openshift/code-quarkus.yaml)