pintowar / rts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Running this application

This profile also defines a set of custom Gradle tasks, including a bootRun task to startup the client app. You can either start up the server and client apps separately:

./gradlew server:bootRun

# in another terminal
./gradlew client:bootRun

Or you can take advantage of Gradle’s parallel execution to run both client and server apps in a single command:

./gradlew bootRun -parallel

Other tasks defined in client wrap the create-react-app scripts for building and testing the React app. You can run them with the Gradle wrapper, or run the npm scripts directly if you have npm installed.

./gradlew client:test #or, from the client project dir: npm test

./gradlew client:build #or, from the client project dir: npm run build

Again, please see the create-react-app documentation for more information on leveraging these scripts and the other features provided by create-react-app.

About


Languages

Language:Groovy 59.4%Language:JavaScript 16.2%Language:Java 11.7%Language:Shell 6.8%Language:Batchfile 3.5%Language:HTML 2.1%Language:CSS 0.4%