Skip to main content

A tool for developing Node.js and Python projects

Project description

dotrun

A tool for developing Node.js and Python projects

dotrun makes use of a Docker image to provide a predictable sandbox for running Node and Python projects.

Features:

  • Make use of standard package.json script entrypoints:
    • dotrun runs yarn run start within the Docker container
    • dotrun foo runs yarn run foo within the Docker container
  • Detect changes in package.json and only run yarn install when needed
  • Detect changes in requirements.txt and only run pip3 install when needed
  • Run scripts using environment variables from .env and .env.local files
  • Keep python dependencies in .venv in the project folder for easy access

Usage

$ dotrun          # Install dependencies and run the `start` script from package.json
$ dotrun clean    # Delete `node_modules`, `.venv`, `.dotrun.json`, and run `yarn run clean`
$ dotrun install  # Force install node and python dependencies
$ dotrun exec     # Start a shell inside the dotrun environment
$ dotrun exec {command}          # Run {command} inside the dotrun environment
$ dotrun {script-name}           # Install dependencies and run `yarn run {script-name}`
$ dotrun -s {script}             # Run {script} but skip installing dependencies
$ dotrun --env FOO=bar {script}  # Run {script} with FOO environment variable

Installation

Docker

First, install Docker (Get Docker).

Linux users may also need to follow the post install instructions to be able to run Docker as a non-root user.

Linux

To install dotrun run:

sudo apt install python3-pip
sudo pip3 install dotrun

Mac

To install dotrun on a mac you will need Homebrew (follow the install instructions on that page).

Then run:

brew install python3
sudo pip3 install dotrun

Requirements

  • Linux / macOS
  • Docker (Get Docker)
  • Python > 3.6 and PIP

macOS performance

For optimal performance on Docker we recommend enabling a new experimental file sharing implementation called virtiofs. Virtiofs is only available to users of the following macOS versions:

  • macOS 12.2 and above (for Apple Silicon)
  • macOS 12.3 and above (for Intel)

How to enable virtiofs

Add dotrun on new projects

To fully support dotrun in a new project you should do the following:

  • For Python projects, ensure Talisker is at 0.16.0 or greater in requirements.txt
  • Add .dotrun.json and .venv to .gitignore
  • Create a start script in package.json to do everything needed to set up local development. E.g.: "start": "concurrently --raw 'yarn run watch' 'yarn run serve'"
    • The above command makes use of concurrently - you might want to consider this
  • Older versions of Gunicorn are incompatible with strict confinement so we need Gunicorn >= 20
    • The update landed in Talisker but at the time of writing hasn't made it into a new version
    • If there's no new version of Talisker, simply add gunicorn==20.0.4 to the bottom of requirements.txt

However, once you're ready to completely switch over to dotrun, simply go ahead and remove the run script.

Automated tests of pull requests

The "PR" action builds the Python package and runs a project with dotrun. This will run against every pull request.

Publish

All the changes made to the main branch will be automatically published as a new version on PyPI.

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

dotrun-2.1.1.tar.gz (4.2 kB view details)

Uploaded Source

Built Distribution

dotrun-2.1.1-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file dotrun-2.1.1.tar.gz.

File metadata

  • Download URL: dotrun-2.1.1.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for dotrun-2.1.1.tar.gz
Algorithm Hash digest
SHA256 f1ffba85e34c5b3ffef8ac716456a3b6adc7551786fd149174ff291683d19ccc
MD5 805a691af1bb23ed7c51d79af7fcafca
BLAKE2b-256 b52cce9246b6308922b45c299badd03761bf2fb349af6c09689f54be2be50253

See more details on using hashes here.

File details

Details for the file dotrun-2.1.1-py3-none-any.whl.

File metadata

  • Download URL: dotrun-2.1.1-py3-none-any.whl
  • Upload date:
  • Size: 4.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for dotrun-2.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 71468d554b025474759e5499d93a3a0634ed63087e470228b7118d6a1e7d52ee
MD5 88f8240c8c1d6df0299e852f9eca06dd
BLAKE2b-256 0fa9bddd3c1e05731aa92cbf948da52a0d45ca5643a8195166a68b98df6e38e7

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