https://github.com/dokadev/protomini
https://github.com/dokadev/protomini
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/dokadev/protomini
- Owner: DokaDev
- Created: 2024-05-04T14:01:11.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-06T14:00:41.000Z (about 2 years ago)
- Last Synced: 2024-05-07T15:15:59.549Z (about 2 years ago)
- Language: Java
- Size: 64.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
### Getting Started
1. Clone the repo
```sh
git clone https://github.com/DokaDev/ProtoMini.git
```
2. Build with GNU Make
Skip this step if GNU Make is already installed on your system.
```sh
brew install make # For MacOS
sudo apt-get install make # For Debian/Ubuntu
sudo dnf install make # For RedHat/Fedora/CentOS
sudo pacman -S make # For Arch/Manjaro
```
3. Build the project
```sh
make
```
4. To run the project use the following command
```sh
make run
```
5. To clean the project use the following command
```sh
make clean
```