You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Martin Stein edited this page Jun 19, 2022
·
3 revisions
How to get up and running
Clone the project
Create a new Java Maven Project and add the cloned project as dependency
Add an .env file to customize your instance
Create a Main Class and add the following lines:
publicstaticvoidmain(String[] args) throwsIOException, TimeoutException {
...
OpenWareInstance.getInstance(); // Inits the instance based on the .env fileOpenWareInstance.getInstance().startInstance(); // Starts all services and Web-APIs
}// main