Skip to content

km2k/dirigible

 
 

Eclipse Dirigible™

Build Status Eclipse License Download Dirigible Maven Central GitHub contributors FOSSA Status CII Best Practices

Eclipse Dirigible is an Integrated Development Environment as a Service (IDEaaS) for dynamic applications. It provides both development tools and runtime environment.

dirigible logo

Enjoy Programming Like Never Before

From the end user's perspective (developer), Dirigible runs directly in the browser, therefore does not require any downloads or installations.

From the service provider's perspective (PaaS/SaaS), Dirigible packs all required components in a self-contained software bundle that can be deployed in any Java-based web server, such as Tomcat, Jetty, JBoss.

Dirigible supports access to RDBMS via JDBC. Currently supported versions for RDBMS are HANA, MaxDB, Sybase ASE, PostgreSQL, MySQL, H2, and Derby.

Dirigible promotes the In-System Programing development model, where you make dynamic alteration of the live system. To provide the self-contained bundle serving all the needed features for a business application, Dirigible packs various engines such as ActiveMQ, Quartz, Lucene, Flowable, Mylyn, Rhino, V8 and others.

The project started as an internal SAP initiative to address the extension and adaption use-cases related to SOA and Enterprise Services.

Instant Trial

You can try the sandbox instance to have a quick look on the functionality you are interested http://trial.dirigible.io.

Get Started

Download

The "fast-track" - you can download the precompiled binaries produced from the Hudson builds from http://download.eclipse.org/dirigible and skip the build section.

Nevertheless, we highly recommend building the binaries from source in order to have all experimental features that are not available in the releases.

Build

Prerequisites
Steps
  1. Clone the project repository - master branch or download the latest 3.x sources.

  2. Go to the root folder.

  3. Build the project with:

     mvn clean install
    

The build should pass successfully. The produced WAR files under target sub-folder releng are ready to be deployed. There are separated deployable artifacts (WAR files) depending on the usage type. There is also an executable JAR file under the releng/desktop-all/target folder with name like dirigible-desktop-all-3.1.4.jar

Run

Desktop

Steps
  1. Take the JAR file you have built in the previous step e.g. dirigible-desktop-all-3.1.4.jar.

  2. Execute from command line

    java -jar dirigible-desktop-all-3.1.4.jar

  3. Open a web browser and go to:

     http://localhost:8080
    

Tomcat

The Tomcat specific WAR files can be deployed on Tomcat web container. In this case the built-in Derby database is used.

More information about how to deploy on Tomcat can be found here.

Steps
  1. Take the WAR file you have built in the previous step ROOT.war.

  2. Configure Users store:

     <tomcat-users>
             <role rolename="Developer"/>
             <role rolename="Operator"/>
             <role rolename="Everyone"/>
             <user username="dirigible" password="dirigible" roles="Developer,Operator,Everyone"/>
     </tomcat-users>
    
  3. Open a web browser and go to:

     http://localhost:8080
    
  4. Login with dirigible/dirigible.

Docker

Prerequisites
Steps
  1. Pull the already built container from Docker Hub

     docker pull dirigiblelabs/dirigible-trial
    
  2. Start the container

     docker run -p 8888:8080 dirigiblelabs/dirigible-trial <&- &
    
  3. Open a web browser and go to:

     http://localhost:8888/
    
  4. Optionally you can enhance and customize the Dockerfile from here

Additional Information

License

This project is copyrighted by SAP SE and is available under the Eclipse Public License v 1.0. See LICENSE.txt and NOTICE.txt for further details.

FOSSA Status

Contributors

If you like to contribute to Dirigible, please read the Contributor's guide.

References

About

Eclipse Dirigible™ Project

Resources

License

EPL-1.0, Unknown licenses found

Licenses found

EPL-1.0
LICENSE
Unknown
license-header.txt

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 71.8%
  • Java 16.6%
  • CSS 6.7%
  • HTML 4.9%