An app to find the people on Instagram that you are not following back.
I am NOT a front-end developer, so the UI is not the best, but it works.
You can see it in action at fauxfriends.fly.dev.
Before running the app locally, make sure you have the following installed:
To run the application in dev mode (live coding), use the following command:
./gradlew quarkusDevThis will start the application on http://localhost:8080, where you can access the app.
To build and run the application:
-
Build the app:
./gradlew build
-
Once built, run the app:
java -jar build/quarkus-app/quarkus-run.jar
If you want to build a native executable for faster startup times, you can do that with:
./gradlew build -Dquarkus.native.enabled=trueOr, to build the native executable inside a container:
./gradlew build -Dquarkus.native.enabled=true -Dquarkus.native.container-build=trueOnce built, you can run the native executable:
./build/fauxfriends-1.0.0-SNAPSHOT-runnerFor more information on creating native executables, check the Quarkus Native Executable Guide.
- Quarkus REST Guide: Learn about the Jakarta REST implementation in Quarkus.