RAMUS
Project by Vitaliy Yakovchuk
Java-based IDEF0 & DFD Modeler
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)
-
Clone the Repository:
git clone https://github.com/Vitaliy-Yakovchuk/ramus.git
-
Navigate to the Project Folder:
cd ramus
-
Run the Application:
./gradlew runLocal
Optional: Create a Shortcut to Launch the Application
- Open your
.bash_aliases
file:nano ~/.bash_aliases
-
Add the following alias to easily launch the application:
alias ramus='cd ~/path/to/ramus/folder/ && ./gradlew runLocal &'
-
Save the file and reload it:
source ~/.bash_aliases
- Now, you can simply run
ramus
in the terminal to launch the application.