ExplorViz Backend Dummy Extension

This repository holds a dummy extension for ExplorViz Backend. Use it as a starting point for your future extension.

Setup Development / Usage

  1. Clone this repository (e.g. for SSH git clone git@github.com:ExplorViz/explorviz-backend-extension-dummy.git)
  2. Set remote URL to the URL of your assigned repository (e.g. for SSH git remote set-url origin git@github.com:ExplorViz/explorviz-backend-extension-X.git)
  3. Rename the root folder explorviz-backend-extension-dummy to explorviz-backend-extension-X, where X is the name of your extension
  4. Run ./gradlew renameProject -PextensionName="X", where X is the name of your extension
  5. Adjust the README.md (e.g. remove Setup sections)
  6. Stage and commit changes with git add -A && git commit -am "renaming dummy"
  7. Push to remote origin and set upstream with git push -u origin master
  8. Follow the Backend Setup
  9. In Eclipse: Import -> Gradle -> Existing Gradle Project
  10. Start your development
  11. Start the embedded web server with Gradle task gretty -> appStart