This is rest service which helps in invoking any OS level commands or can be used to trigger scripts that are in any machine where the application runs
These instructions will get you a copy of the project up and running on your local machine.
Things you need to build the application
Java
Maven
A step by step process to build the code to JAR
git clone https://github.com/iamshreeram/executor-service.git
Extract the folder. Get into the folder do mvn clean install
where pom.xml is located.
Note : Ensure Maven is configured in your system path
Snapshot version of Jar would have been created in target folder. Run it with below command
java -jar executorservice-1.0.jar
For Maven,
<dependency>
<groupId>us.shreeram.applications</groupId>
<artifactId>executorservice</artifactId>
<version>1.0</version>
</dependency>
For SBT,
libraryDependencies += "us.shreeram.applications" % "executorservice" % "1.0"
- Monitor Service to check the script status
- Ensure any script or command in OS can run only once
- Accept multiple arguments from user and dynamically pass it to script
- Enable the service to run kernel level commands and return the output
- Host a Single page app to view the details of OS and status.
- Codecov set up is in progress.