- Create a new folder in the root of the repository.
- Add your and your team GitHub handles into the
CODEOWNERS
file. See documentation. Please keep the list of folder sorted alphabetically. - Create a
README.md
file in the root of your folder and add frontmatter metadata on top of it. Please keepYour awesome project title
under 55-60 characters. There'll be linting ruled added automatically.
---
title: "Your awesome project title"
language: python
author: "Your Name"
date: 2022-10-15
tags:
- list
- of
- awesome
- tags
---
# Your awesome project title
... markdown documentation about your project. People will be reading it.
- Create a branch and push it to this repository either with a fork (if you're not added directly) and create a pull request. Reviewers will be automatically assigned.
..
We use mutliple modules setup for go-based tools and libraries.
To debug in VSCode, create .vscode/launch.json
with approximately the following contents:
{
"version": "0.2.0",
"configurations": [
{
"name": "metascan clone-all",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/metascan/main.go",
"args": [
"clone-all",
"--debug"
]
}
]
}