https://github.com/quarkusio/status.quarkus.io
Application centralizing the status of the Quarkus project
https://github.com/quarkusio/status.quarkus.io
Last synced: 3 months ago
JSON representation
Application centralizing the status of the Quarkus project
- Host: GitHub
- URL: https://github.com/quarkusio/status.quarkus.io
- Owner: quarkusio
- License: apache-2.0
- Created: 2020-09-16T16:16:20.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-01-23T13:50:42.000Z (12 months ago)
- Last Synced: 2025-01-23T14:32:25.927Z (12 months ago)
- Language: Java
- Homepage:
- Size: 389 KB
- Stars: 3
- Watchers: 16
- Forks: 7
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Quarkus Status Application
This project aims at centralizing all the information about the status of Quarkus development.
## Usage
Can't be simpler, just go to the index page:
> 
## Setup
In your application directory, create a .env file containing your OAuth token:
```
STATUS_TOKEN=
```
The token only needs read access to the repository.
## Running the application in dev mode
You can run your application in dev mode that enables live coding using:
```
./mvnw clean quarkus:dev
```
**The application starts on port `9081` so the URL is http://localhost:9081/.**
## Packaging and running the application
The application can be packaged using `./mvnw package`.
It produces the `quarkus-status-1.0-SNAPSHOT-runner.jar` file in the `/target` directory.
The application is now runnable using `java -jar target/quarkus-status-1.0-SNAPSHOT-runner.jar`.
**The application starts on port `9081` so the URL is http://localhost:9081/.**