Skip to content

Latest commit

 

History

History
59 lines (42 loc) · 1.47 KB

CONTRIBUTING.md

File metadata and controls

59 lines (42 loc) · 1.47 KB

Contribution Guidelines

You can contribute to awesome-italia-remote with issues and PRs.

Issues

Issues can be used to ask questions, report errors, or start discussions.

Pull Requests

Pull requests can be used to add/edit/delete companies from the list.

How To Contribute with PRs

The new companies must be added to the /data folder using a dedicated file in snake_case.json format. The files are divided by category into sub-folders (software, marketing, ecc...). Subsequently, the README.md file is automatically generated, so you don't have to edit it manually.

  1. Open ./data directory
  2. Choose the correct company category (software, marketing, ecc...) and enter that directory
  3. Add a new JSON file for the new company (file name should be a slugified version of the company name)
  4. File content should respect the following format:
{
    "name": "CompanyName",
    "career_page_url": "https://companyname.companytld/jobs",
    "url": "https://www.companyname.companytld/",
    "remote_policy": "FullRemote",
    "hiring_policy": "Contract",
    "type": "B2B",
    "tags": [
        "PHP",
        "Go",
        "AWS"
    ]
}

Allowed Company Types

  1. B2B
  2. B2C
  3. Consulting
  4. Product

Allowed Company Remote Policies

  1. FullRemote
  2. Mixed

Allowed Hiring Policies

  1. Contract
  2. Direct
  3. Intermediary

Max number of tags

The maximum number of tags is 20. This rule is necessary to avoid format problems with the MarkDown file.