All checks were successful
continuous-integration/drone/push Build is passing
30 lines
368 B
Markdown
30 lines
368 B
Markdown
## Hacking
|
|
|
|
You'll need [Go] >= 1.11 installed.
|
|
|
|
Run `make` to build a new `./distribusi` executable.
|
|
|
|
[Go]: https://go.dev
|
|
|
|
### Tests
|
|
|
|
```
|
|
make test
|
|
```
|
|
|
|
### Generating the logo
|
|
|
|
```
|
|
cat contrib/logo/LOGO | lolcat -F 0.1
|
|
```
|
|
|
|
### Release
|
|
|
|
```
|
|
make release
|
|
mv dist contrib/web
|
|
cd contrib/web
|
|
distribusi -c styles.css
|
|
rsync -avz . varia.zone:public_html/distribusi
|
|
```
|