Skip to content

Latest commit

 

History

History

quarkus-smallrye-jwt

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

quarkus-smallrye-jwt

Prototype test for JWT token based endpoint authentication.

Setting up certificates

cd src/main/resources
openssl req -newkey rsa:2048 -new -nodes -keyout privatekey.pem -out csr.pem
openssl rsa -in privatekey.pem -pubout > publickey.pem

Running the application in dev mode

You can run your application in dev mode that enables live coding using:

./mvnw compile quarkus:dev