A demo application built with Grails and Vue.js to illustrate how Inertia.js works.
It uses the Grails Adapter for Inertia.js plugin.
Note
This is a port to Grails/Groovy of the original Ping CRM written in Laravel/PHP.
Note
There is a live demo of this application at: https://pingcrm.mattiasreichel.com
The demo is running in a container that is destroyed/recreated at the top of every hour.
Please be respectful when editing data!
- Java 17+
- Npm
Clone the repo locally
git clone https://github.com/matrei/pingcrm-grails.git
cd pingcrm-grails
Install client dependencies
npm installServe client files with hot module replacement
npm run serve
and start the grails application
./gradlew bootRunwith bundled/minified client files
./gradlew -Dgrails.env=production bootRunVisit Ping CRM in your browser - http://localhost:8080
To run the Ping CRM test suite, run:
./gradlew checkTo create a runnable war for production (in ~/pingcrm-grails/build/libs)
./gradlew assemblethat can be run with:
java -jar build/libs/pingcrm-grails-4.0.1-SNAPSHOT.warTo run the application in server-side rendering mode, you need node >= v18 installed on your system.
SSR is disabled by default. To enable it, set the inertia.ssr.enabled config property to true in application.yml.
The default location of the SSR bundle is src/main/resources/ssr/ssr.mjs.
You can change it by setting/adding the inertia.ssr.bundle config property.
- Original work by Jonathan Reinink (@reinink) and contributors
- Port to Grails by Mattias Reichel (@mattias_reichel)
