Curated list of security tools for Hackers & Builders!
- Navigate to the code directory and run the following commands to install packages and serve
npm install
npm run serve
- Navigate to http://127.0.0.1:8080
- Run the following commands to setup using docker
git clone https://github.com/tldrrun/tools.tldr.run.git
cd tools.tldr.run
docker build -t tldrrun/tools-tldr-run .
docker run -d --name tools-tldr-run -p 1234:8080 tldrrun/tools-tldr-run
- Navigate to http://127.0.0.1:8080
- The simplest way to contribute is adding new tools using Google Form
- Else, you can also make a pull request by following below steps
- Fork the repository
- Add new tool under
tools
folder with new tool name as filename (Example:docker.json
) - The file schema should contain as follows.
name
,description
,tags
,operating_system
,availability
andurl
are mandatory
{
"name": "Docker",
"description": "Docker is an open platform for developers and sysadmins to build, ship, and run distributed applications, whether on laptops, data center VMs, or the cloud.",
"tags": [
"containers",
"devops",
"automation",
"golang"
],
"operating_systems": [
"linux",
"mac",
"windows"
],
"license": "Apache-2",
"availability": [
"opensource",
"free",
"commercial"
],
"github_url": "https://github.com/docker/docker-ce",
"url": "https://www.docker.com/"
}
- Submit the merge request
- Happy contribution and thank you so much.