2
0
Fork 0
mirror of https://github.com/ethauvin/rife2-hello.git synced 2025-04-25 07:27:12 -07:00
Bootstrap project structure to create a RIFE2 web application
Find a file
2023-02-12 11:49:33 -05:00
app Updated readme 2023-02-12 11:49:33 -05:00
gradle/wrapper Initial commit 2023-02-12 11:39:35 -05:00
war Initial commit 2023-02-12 11:39:35 -05:00
.gitattributes Initial commit 2023-02-12 11:39:35 -05:00
.gitignore Added readme and updated git ignore. 2023-02-12 11:45:36 -05:00
gradlew Initial commit 2023-02-12 11:39:35 -05:00
gradlew.bat Initial commit 2023-02-12 11:39:35 -05:00
LICENSE Initial commit 2023-02-12 11:37:38 -05:00
README.md Updated readme 2023-02-12 11:49:33 -05:00
settings.gradle.kts Initial commit 2023-02-12 11:39:35 -05:00

RIFE2 bootstrap project structure

This project helps you to get started with a RIFE2 web application and Gradle.

You'll find all the pieces that are explained in the first sections of the documentation neatly contained in this one project.

It's ready to run, package and deploy ... and for you to have fun developing in a very iterative, intuitive and rewarding way.

For all things RIFE2, head on to the project website: https://rife2.com

Run the tests

./gradlew clean test

Running the server

./gradlew clean run

Go to:

http://localhost:8080/

Deploying the app

./gradlew clean war

The resulting archive will be in: war/build/libs

Making an UberJar

./gradlew clean uberJar

Then run it with:

java -jar app/build/libs/hello-uber-1.0.jar