Skip to content

Getting started

Martin Stein edited this page Jun 19, 2022 · 3 revisions

How to get up and running

  1. Clone the project
  2. Create a new Java Maven Project and add the cloned project as dependency
  3. Add an .env file to customize your instance
  4. 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
Clone this wiki locally