About • Development •
- Gradle >= v6.8
Before running the backend project, it is necessary to create your own profile which specifies the paths needed for the application. Properties files must be created under api/src/main/resources using the following name syntax: “application-.properties”. To enable a profile properties you need to modify the property profiles.active: in the file application.properties in the same directory
Then, for running the project you can use the terminal command gradle bootRun
to start the application or open the project in Intellij IDE and run the main class.
https://www.arquitecturajava.com/spring-autowired-y-la-inyeccion-de-dependencias/
- Node >=12.22.1 Note that uneven versions of Node i.e. 13, 15, etc. do not work
- NPM >=6.14.12
- Yarn. You can install it using
npm install -g yarn
- Quasar CLI >= 2.0. You can install it using
npm install -g @quasar/cli
The first time running the frontend, dependencies must be installed using the command yarn install
under the frontend folder directory. Once dependencies are installed, the frontend server can be started using the command quasar dev
which creates a server at 8080 or the close available port.