|
| 1 | +# Self hosting |
| 2 | +<AppliesTo all /> |
| 3 | + |
| 4 | +<FlowLink /> provides a fully managed solution for distributing applications. It takes care of handling updates, rollbacks by managing the the releases list. It manages organizing and distributing release assests within separate channels, and provides additional features like tiered rollout. |
| 5 | + |
| 6 | +If instead you would prefer to manage your own infrastructure, Velopack provides tooling for downloading and uploading release assets to many common storage providers. The `vpk` tool has support downloading the latest release, and, for several providers, pushing up new release assets after running `vpk pack` (see [Overview](overview.mdx)). |
| 7 | + |
| 8 | +## Amazon S3 |
| 9 | + |
| 10 | +[Amazon S3](https://aws.amazon.com/s3/) is a highly scalable, durable, and secure object storage service. |
| 11 | + |
| 12 | +To upload or download from an S3 bucket you will need to specify either the S3 endpoint or the region. Authentication can be done using an existing session token or by access key ID and secret. |
| 13 | + |
| 14 | +For all of the available options see the [vpk CLI documentation](../reference/cli). |
| 15 | + |
| 16 | +## Azure Blob storage |
| 17 | + |
| 18 | +[Azure Blob Storage](https://learn.microsoft.com/azure/storage/blobs/storage-blobs-introduction) is a scalable, cost-effective cloud storage solution for unstructured data. |
| 19 | + |
| 20 | +You can authenticate to Azure Blob Storage using either a storage account name and access key or by using a shared access signature (SAS). |
| 21 | + |
| 22 | +For all of the available options see the [vpk CLI documentation](../reference/cli). |
| 23 | + |
| 24 | +## File system |
| 25 | +Velopack supports local file system paths for both "uploading" and "downloading". This is useful for testing or for local development via network drives. The `vpk` tool can be used to pack releases and then copy them to a local directory. |
| 26 | + |
| 27 | +For all of the available options see the [vpk CLI documentation](../reference/cli). |
| 28 | + |
| 29 | +## Gitea |
| 30 | + |
| 31 | +[Gitea](https://gitea.io) is a lightweight, self-hosted Git service. It provides a private, fast, reliable DevOps platform. |
| 32 | + |
| 33 | +When publishing to Gitea the release name will be the same as the version number unless otherwise specified. If an existing release is not found a new one will be created. Optionally if you would prefer to update an existing release you can specify the `--merge` flag. |
| 34 | + |
| 35 | +For all of the available options see the [vpk CLI documentation](../reference/cli). |
| 36 | + |
| 37 | +## GitHub |
| 38 | + |
| 39 | +[GitHub](https://github.com) is a widely used platform for hosting Git repositories and collaborating on software development. It provides features like pull requests, issue tracking, and CI/CD integrations. |
| 40 | + |
| 41 | +When publishing to GitHub, the release name will default to the version number unless specified. If a release with the same name exists, it can be updated using the `--merge` flag. |
| 42 | + |
| 43 | +For all of the available options see the [vpk CLI documentation](../reference/cli). |
| 44 | + |
| 45 | +## HTTP server |
| 46 | +Velopack supports arbitrary HTTP endpoints for downloading. This endpoint must be able to service the `releases.{channel}.json` file, as well as the `nupkg` files. `vpk` does not offer upload support, and it is up to you to upload the updated files to the server after building a new release. |
| 47 | + |
| 48 | +For all of the available options see the [vpk CLI documentation](../reference/cli). |
| 49 | + |
0 commit comments