Ruitenberglaan 26,
6826 CC Arnhem|
This guide will explain how to install and run the Regterschot data log system.
The application contains two distinct parts. First, there's the web application that was made using the Angular framework. Second, the API which was made with Jakarta EE 9.
https://nodejs.org/en/download/
NPM is used to both install angular and keep the dependencies synchronised and up-to-date. It's possible download all project files manually, but that would take a lot of unneeded work and wouldn't be efficient when working in a larger team.
https://bitbucket.aimsites.nl/projects/SMAL/repos/regterschot-fe/browse
This can be done either by a browser and going to the repository, or by using a git client like Sourcetree or GitHub.
This can either be done by typing "cd" and the path to the install location, or by using the windows file explorer and going to the location where the project is saved, clicking on the file navigation path and typing in CMD there.
There is an option to update the project while a version of the API is running. For this update, use the command "npm update" in the console of the program. This will only download and update dependencies that do not exist yet.
With the install command NPM installed angular which is used to run the application. Deze zin is overbodig hier; het is compleet buiten de context. Je kunt deze zin beter in punt 5 verwerken of weglaten. Zin erna kun je denk ik ook wel weglaten
When the command is executed, it will display a progress bar, wait until everything's done.
If this is the first time starting the project, it will take a couple minutes to get everything up and running. The command prompt will show when it is done compiling and the web application is running.
The installation of the API is less straightforward, requiring a bit more effort to be set up properly.
In terms of software, Java Development Kit 17 will need to be downloaded. This is an installation folder that will allow the system to run the API.Ik mis nog de installatie van de java ide
Hierbij ook de installatie van wildfly After which we will need to install WildFly, this will be used to run the API.
JDK 17: https://jdk.java.net/archive/
After installing the JDK, set the JAVA_HOME to the right installation path. Baeldung has comprehensive guide on how it can be done on a multitude of operating systems.
"mvn -version". If installed it should show the current maven version. If it says that mvn isn't a valid command you have to install maven (maven installation).
Choose JBoss/WildFly server -> LocalJboss/WildFly server -> Local.
https://maven.apache.org/download.cgiZou dit nog even apart in een kopje neerzetten
To set these variables, right click on home button and then go to system.
For name, insert "M2_HOME" and for value, insert "C:\Program Files\apache-maven-3.8.6". This is the path where the files were extracted in the previously downloaded maven folder. Next, press "OK".
After this press "OK" again.
This will open up a new window with all the path variables of the system.
Press "New" and paste "C:\Program Files\apache-maven-3.8.6\bin" and press the "OK" button.
After this, go back to the Command Prompt and type in "mvn -version".
If everything is done correctly it will show the current Maven version.