-
Notifications
You must be signed in to change notification settings - Fork 0
Getting started
Martin Stein edited this page Jun 19, 2022
·
3 revisions
- 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:
public static void main(String[] args) throws IOException, TimeoutException {
...
OpenWareInstance.getInstance(); // Inits the instance based on the .env file
OpenWareInstance.getInstance().startInstance(); // Starts all services and Web-APIs
}// main