commit d9f9c082c321530a48cae10f41debf4b3457958d Author: Henrik Hautakoski Date: Tue Oct 8 14:30:40 2019 +0200 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2835504 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.lock +_site/ +.bundle/ +vendor/ diff --git a/404.html b/404.html new file mode 100644 index 0000000..086a5c9 --- /dev/null +++ b/404.html @@ -0,0 +1,25 @@ +--- +permalink: /404.html +layout: default +--- + + + +
+

404

+ +

Page not found :(

+

The requested page could not be found.

+
diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..75d9835 --- /dev/null +++ b/Gemfile @@ -0,0 +1,2 @@ +source "https://rubygems.org" +gem "github-pages", group: :jekyll_plugins diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..e2389b6 --- /dev/null +++ b/_config.yml @@ -0,0 +1 @@ +title: EOS Sw/eden APT diff --git a/index.md b/index.md new file mode 100644 index 0000000..115a77d --- /dev/null +++ b/index.md @@ -0,0 +1,59 @@ + +The repository is hosted on https://apt.eossweden.org/ + +### Setup + +First you must add our `gpg` key to `apt`: + +```bash +$ curl https://apt.eossweden.org/key | sudo apt-key add - +``` + +Then you can add one or more of your repositories: + +```bash +$ sudo apt-add-repository -y 'deb [arch=amd64] https://apt.eossweden.org/eosio bionic stable' +$ sudo apt-get update +``` + +The url is structures as follows: + +``` +https://apt.eossweden.org/ bionic [ ] [ ] +``` + +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. Each repository has 3 different components described below. + +#### Components + +| 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 evironment | +| testing | Cutting edge releases, everything ends up here first to be tested before being moved to `edge` or `stable` | + +#### Repositories + +| Name | Description | +| --------- | -------------------------------------- | +| main | Releases of EOS Sw/eden own products. | +| eosio | EOSIO Software | + +### Example + +To add the `stable` `eosio` repository the following command will do: + +```bash +$ sudo apt-add-repository -y 'deb [arch=amd64] https://apt.eossweden.org/main bionic stable' +``` + +To add both `edge` and `stable` components for the `main` repository: + +```bash +$ sudo apt-add-repository -y 'deb [arch=amd64] https://apt.eossweden.org/main bionic stable edge +```