onboarder
Website for easing employee onboardnig in projects/workplace
- Coding conventions found at onboarder/coding conventions/ as an .adoc file: it can be updated by using https://asciidoclive.com/edit/scratch/1. Import the file and add your suggestions. :)
- Import the file onboarder/coding conventions/EasyOnboarderCodingStyle.xml in your IDE for formatting the code.
Use Case doc:
Installation requirements:
-
PostreSQL, version 10.5
-
dbForce Studio for PostreSQL
-
Gradle
-
Java 8
-
Node
Runnig Server Application:
-
From Intellij:
- select Edit Configurations from Run area
- add --spring.datasource.url=jdbc:oracle:thin:@:1521:xe to program arguments ( to be replaced with the IPv4 Address of the computer running the program; "ipconfig" command will show it)
-
From Jar
- open Terminal / Command Prompt
- go to project_location\server\app\build\libs (with "cd" command)
- run " -java -jar onborder-server.jar --spring.datasource.url=jdbc:oracle:thin:@:xe" ( to be replaced with the IPv4 Address of the computer running the program; "ipconfig" command will show it)
-
With Docker (requires installation of Docker)
- open Terminal / Command Prompt
- go to project_location\server\app (with "cd" command)
- run "docker build -t server . --build-arg db_ip= --build-arg db_port=1521" command ( to be replaced with the IPv4 Address of the computer running the program; "ipconfig" command will show it)
- run " docker run -p 8090:8090 server"
Running Client Application
NOTE The application will connect to a Oracle 11g database.