Skip to content

Vitaliy-Yakovchuk/ramus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RAMUS

Project by Vitaliy Yakovchuk

Project Image

Java-based IDEF0 & DFD Modeler

Screenshot 2019-11-18 at 11 14 26

Screenshot 2019-11-18 at 11 14 59


How to Start the Application

Step 1: Install JDK

Download and install the Oracle JDK.

Step 2: Run the Application

In the console, navigate to the project folder and run:

./gradlew runLocal

Step 3: Test the Application

For Linux (Tested on Ubuntu 20.04 and Fedora 34)

  1. Clone the Repository:

    git clone https://github.com/Vitaliy-Yakovchuk/ramus.git
  2. Navigate to the Project Folder:

    cd ramus
  3. Run the Application:

    ./gradlew runLocal

Optional: Create a Shortcut to Launch the Application

  1. Open your .bash_aliases file:

    nano ~/.bash_aliases
  2. Add the following alias to easily launch the application:

    alias ramus='cd ~/path/to/ramus/folder/ && ./gradlew runLocal &'
  3. Save the file and reload it:

    source ~/.bash_aliases
  4. Now, you can simply run ramus in the terminal to launch the application.