-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ Ginker is a GUI application for auto-evaluating your Golang code. It allows you | |
|
||
It's similar to [Go Playground](https://play.golang.org/) but instead of using a web service, it will evaluate your Golang code locally using your Golang binary. | ||
|
||
## Install/run | ||
## Installation | ||
|
||
### macOS | ||
|
||
|
@@ -22,6 +22,28 @@ Currently not suported. | |
|
||
Extract the .tar.gz and run the executable | ||
|
||
## Building | ||
|
||
Clone the repository | ||
|
||
```shell | ||
git clone [email protected]:nkoporec/ginker.git | ||
cd ginker | ||
``` | ||
|
||
Start wails server | ||
|
||
```shell | ||
wails serve | ||
``` | ||
|
||
Start frontend tools | ||
|
||
```shell | ||
cd frontend | ||
npm run serve | ||
``` | ||
|
||
## Compiling | ||
|
||
Ginker is built using [Wails](https://github.com/wailsapp/wails) | ||
|
@@ -52,11 +74,9 @@ _Also succesfully tested on: Zorin 15, Parrot 4.7, Linuxmint 19, Elementary 5, K | |
|
||
`sudo pacman -S webkit2gtk gtk3` | ||
|
||
### Clone and build the app | ||
### Build the app | ||
|
||
```shell | ||
git clone [email protected]:nkoporec/ginker.git | ||
cd ginker | ||
wails build | ||
``` | ||
|
||
|