Skip to content

Latest commit

 

History

History
47 lines (41 loc) · 754 Bytes

README.md

File metadata and controls

47 lines (41 loc) · 754 Bytes

RoxyMC Website

Compiling

Frontend

You can use gradle generate npm task:

./gradlew generate

or directly run:

cd frontend
npm run generate

Backend

Simply run:

./gradlew shadowJar

Dev Running

Frontend

Running frontend with auto-reload is simple, however, if you didn't already do this, you need to install all dependencies with postInstall task:

./gradlew postInstall

and then run:

cd frontend
npm run dev

Note

Any backend api calls won't work unless you run the backend.

Backend

First, you need to execute run task:

./gradlew run

and then launch auto-reload in a separate terminal:

./gradlew -t jar