1
0
Fork 0
mirror of https://github.com/eosswedenorg/apt synced 2026-06-16 04:34:56 +02:00
apt/index.md

1.9 KiB

The repository is hosted on [{{ site.apt.domain }}](https://{{ site.apt.domain }})

Setup

First you need to make sure some packages are installed and that our gpg key is added to apt:

$ sudo apt-get install software-properties-common
$ curl https://{{ site.apt.domain }}/key 2> /dev/null | sudo apt-key add -

Then you can add one or more of your repositories:

{% include apt-add.html repo="eosio" components="stable" update=true %}

The url is structures as follows:

https://{{ site.apt.domain }}/<repository> bionic <component> [ <component1> ] [ <componentN> ]

one repository and one or more components needs to be specified. These are explained below.

Contents

Here is a list of different repositories we provide.

Repositories

{% assign repos = site.repos | sort: 'sequence' %} {% for repo in repos %}

  • [{{ repo.title }}]({{ repo.url | relative_url }}) - {{ repo.description }} {% endfor %}

Components

Each repository has 3 different components described below.

Name Description
stable Releases that are properly tested and does not contain any experimental code
edge Development releases that may or may not work as expected. Do not use in production environment
testing Testing releases, everything ends up here first to be tested before being moved to edge or stable

Example

To add the stable eosio repository the following command will do:

{% include apt-add.html repo="eosio" components="stable" %}

To add both edge and stable components for the main repository:

{% include apt-add.html repo="eosio" components="stable edge" %}