This commit is contained in:
Daniil Gentili 2023-05-01 19:39:12 +02:00
parent 345adcf479
commit d5c467c691
Signed by: danog
GPG key ID: 8C1BE3B34B230CA7
10 changed files with 880 additions and 71 deletions

View file

@ -13,8 +13,7 @@ If you really have to build it yourself, we recommend you Docker over binaries.
2. Download the Git SCM from https://git-scm.com/download/linux or from your package manager (it's always called `git`)
3. Clone the repository by running `git clone https://gitea.massivebox.net/ecodash/ecodash.git ` inside a command prompt
4. Switch to the project directory with `cd ecodash`
5. Download the dependencies with `go get ecodash`
6. Build with `go build`. This will generate an executable, `ecodash`, in the same directory.
5. Build with `go build src/main/main.go -o ecodash`. This will generate an executable, `ecodash`, in the same directory.
### Windows
@ -22,7 +21,6 @@ If you really have to build it yourself, we recommend you Docker over binaries.
2. Install the Git SCM from https://git-scm.com/download/win. The "Standalone installer" is recommended. All the default settings will work fine.
3. Clone the repository by running `git clone https://gitea.massivebox.net/ecodash/ecodash.git ` inside a command prompt
4. Switch to the project directory with `cd ecodash`
5. Download the dependencies with `go get ecodash`
6. Build with `go build`. This will generate an executable, `ecodash.exe`, in the same directory.
5. Build with `go build src/main/main.go -o ecodash`. This will generate an executable, `ecodash.exe`, in the same directory.
## Docker