Work on README.md
This commit is contained in:
parent
215360ceef
commit
d7a5547128
4 changed files with 24 additions and 22 deletions
15
CONTRIBUTING.md
Normal file
15
CONTRIBUTING.md
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
Thank you for showing your interest in contributing! Contributions are the most welcome. Anything including small fixes is greatly appreciated.
|
||||||
|
|
||||||
|
Please keep your new code consistent with the existing codebase and follow the industry's best practices. Before committing, please make sure that your code passes the linting & security scanning suite.
|
||||||
|
|
||||||
|
To install linting tools, execute the following commands:
|
||||||
|
```sh
|
||||||
|
make lint-deps
|
||||||
|
make security-check-deps
|
||||||
|
```
|
||||||
|
|
||||||
|
After that, you will be able to run the linter and the security scanning tool.
|
||||||
|
```sh
|
||||||
|
make lint
|
||||||
|
make security-check
|
||||||
|
```
|
||||||
|
|
@ -33,11 +33,11 @@ After that, you should be able to run `linsk`, or `~/go/bin/linsk` if you have n
|
||||||
|
|
||||||
## Package managers
|
## Package managers
|
||||||
|
|
||||||
//TODO.
|
TODO.
|
||||||
|
|
||||||
## Prebuilt binaries
|
## Prebuilt binaries
|
||||||
|
|
||||||
//TODO.
|
TODO.
|
||||||
|
|
||||||
## Build from Source
|
## Build from Source
|
||||||
Clone the repository using `git` and run `go build` to build the Linsk binary.
|
Clone the repository using `git` and run `go build` to build the Linsk binary.
|
||||||
|
|
|
||||||
|
|
@ -40,11 +40,11 @@ After that, you should be able to run `linsk`, or `%USERPROFILE%\go\bin\linsk.ex
|
||||||
|
|
||||||
## Package managers
|
## Package managers
|
||||||
|
|
||||||
//TODO.
|
TODO.
|
||||||
|
|
||||||
## Prebuilt binaries
|
## Prebuilt binaries
|
||||||
|
|
||||||
//TODO.
|
TODO.
|
||||||
|
|
||||||
## Build from Source
|
## Build from Source
|
||||||
Clone the repository using `git` and run `go build` to build the Linsk binary.
|
Clone the repository using `git` and run `go build` to build the Linsk binary.
|
||||||
|
|
|
||||||
23
README.md
23
README.md
|
|
@ -26,27 +26,14 @@ Linsk relies on network file shares to expose files to the host machine. Below a
|
||||||
* FTP - An alternative backend.
|
* FTP - An alternative backend.
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
//TODO
|
|
||||||
|
- Windows: See [INSTALL_WINDOWS.md](INSTALL_WINDOWS.md).
|
||||||
|
- macOS: See [INSTALL_MACOS.md](INSTALL_MACOS.md)
|
||||||
|
- Linux (development purposes, mostly): Refer to [LINUX_DEV_ENV.md](LINUX_DEV_ENV.md).
|
||||||
|
|
||||||
# Contributing
|
# Contributing
|
||||||
|
|
||||||
//TODO: Make it a separate .md file.
|
Please see [CONTRIBUTING.md](CONTRIBUTING.md).
|
||||||
|
|
||||||
Contributions are the most welcome. Anything including small fixes is greatly appreciated.
|
|
||||||
|
|
||||||
Please keep your new code consistent with the existing and follow the best practices writing Go code. Before committing, please make sure that your code passes the linting & security scanning suite.
|
|
||||||
|
|
||||||
To install linting tools, execute the following commands:
|
|
||||||
```sh
|
|
||||||
make lint-deps
|
|
||||||
make security-check-deps
|
|
||||||
```
|
|
||||||
|
|
||||||
After that, you will be able to run the linter and the security scanning tool.
|
|
||||||
```sh
|
|
||||||
make lint
|
|
||||||
make security-check
|
|
||||||
```
|
|
||||||
|
|
||||||
# Copyright and License
|
# Copyright and License
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue