No commit activity in last 3 years
No release in over 3 years
Code fetching helper
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 0
< 1.0, >= 0.5.0
 Project Readme

Jackal Code Fetcher

Fetch code from a repository and stash reference in the asset store.

Configuration

The code fetcher uses the asset store to persist compressed code asset. Configure:

{
  "jackal": {
    "assets": {
      "connection": {
        "provider": PROVIDER,
        "credentials": {
          CREDENTIALS
        }
      },
      "bucket": BUCKET_NAME
    }
  }
}

Supported Remotes

GitHub

Access tokens are used for fetching private repositories. Token can be provided via direct configuration:

{
  "jackal": {
    "code_fetcher": {
      "config": {
        "github": {
          "access_token": TOKEN
        }
      }
    }
  }
}

or it can be provided via application level configuration:

{
  "jackal": {
    "github": {
      "access_token": ACCESS_TOKEN
    }
  }
}

Info