Skip to main content

A command-line utility for easy and reliable management of manual deployments from Git repositories

Project description

Laika 🐶

Latest PyPI version

A command-line utility for easy and reliable management of manual deployments from Git repositories.

Even manual deployments can be made reliable if some minimal automation is applied. This utility performs atomic deployments from a Git repository, with an optional build phase (e.g. installing dependencies). The previous deployment is not affected until the build completes successfully – no more inconsistency errors when you update your Git branch but your application is not yet fully updated – e.g. missing new dependencies from your package manager.

Each deployment is built in a new directory made just for that deployment. Previous deployments are kept (and can be later purged), and the target is only updated when the build completes – that’s what we meant by atomic! If the build fails, the target will not be updated.

The meaning of build is defined by the user; it can be any command runnable from a shell. Configuration is made in a simple .ini file.

Installation

Requirements:

  • Python ≥ 3.6 (has been tested with 3.6 and 3.7)
  • Git ≥ 2.7 (depends on the git worktree feature)

Install via pip:

$ pip install laika-deploy

If this fails and you have no idea what to do, you can try adding the --user option after pip install, though other options can be better in the long run – e.g. you can use pipx, or simply create a virtualenv for your installed scripts.

Usage

After installing this utility, you can run laika --help for basic usage instructions.

The easiest way is to run laika deploy <git-branch-name>. But before first usage you must create a deploy.ini file with at least the settings below (look further for an example):

  • dirs.deploy: directory where your application will be deployed. The current deployment will be available at current under this directory. This will be a symlink to the actual deployment directory.

    So, for example, if you have a PHP application, you can point Nginx to the /app/deployments/current directory which will contain a working tree of your Git repository and will be updated whenever you deploy a new version, provided you add this to your deploy.ini:

    [dirs]
    deploy = /app/deployments
    

    Each deployment will also live in this directory with a name containing the date/time of the deployment, the Git commit hash and the name of the branch/tag that was deployed.

  • build.run: which command to run in the build phase. Typical usages are running your package manager, copying configuration files, compiling assets.

    This is run as a shell command line – so you can chain commands as in npm install && npm run build.

A complete configuration file would thus be:

[dirs]
deploy = /app/deployments

[build]
run = npm install && npm run build

It is assumed that the build will be run in the same host where the application is to be deployed. Also, the user running this script must have permission to write on the deployment directory.

Purging old deployments

You can purge old deployments with laika purge. There are two ways to specify what exactly is to be removed:

  • --keep-latest N: keep only the latest N deployments (other than the current one). With N=0, only the current deployment is kept, and with N=1 only one deployment other than the current is kept.
  • --older-than DATETIME: discard deployments with a timestamp strictly older than the given date/time. A wide range of both absolute and relative formats is accepted; see the dateparser documentation for full information. Common cases may be written as 10d, 1w (10 days and 1 week, respectively).

Development setup

If you want to set this project up for development, see CONTRIBUTING.md.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

laika-deploy-0.7.tar.gz (24.2 kB view details)

Uploaded Source

Built Distribution

laika_deploy-0.7-py3-none-any.whl (26.4 kB view details)

Uploaded Python 3

File details

Details for the file laika-deploy-0.7.tar.gz.

File metadata

  • Download URL: laika-deploy-0.7.tar.gz
  • Upload date:
  • Size: 24.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/57.0.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.9.6

File hashes

Hashes for laika-deploy-0.7.tar.gz
Algorithm Hash digest
SHA256 890ccadb347837d27a2b18b1763efb0f666042d2e5494a59e7cac944057c95ae
MD5 e66c080fd31c8769bbec06b9ab2100be
BLAKE2b-256 acf6355126c6835fed0fcc190ae5f6ccbf6fd90c0764fd53c4967730ad3de657

See more details on using hashes here.

File details

Details for the file laika_deploy-0.7-py3-none-any.whl.

File metadata

  • Download URL: laika_deploy-0.7-py3-none-any.whl
  • Upload date:
  • Size: 26.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/57.0.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.9.6

File hashes

Hashes for laika_deploy-0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 2721a2e3ace3a837099025712f76d9a210a9dbc3d3471780e9b4d58beb9da8ee
MD5 695548ac0cdb0cd8e8e96f36dfa4d321
BLAKE2b-256 d172e6e92de34f5f5a9e7a4c3160b695c449722ce9c71729bed5af705a491347

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page