Help functionality for node docker packages
Check if the process is running inside a Docker container
Manage docker-compose from Node.js
Docker Remote API module.
TypeScript definitions for docker-modem
Revolugo Elements UI library - Vue 3 Wrapper
Check if the process is running inside a container (Docker/Podman)
Bookings module for Voyant. Manages booking lifecycle with travelers, supplier statuses, activity log, and notes. Uses `personId` + `organizationId` from CRM as client snapshot.
Docker remote API network layer module.
A simple service worker used for the static template in sandpack, allowing users to develop websites like they would locally in the browser.
A Pulumi package for interacting with Docker in Pulumi programs
Javascript Revolugo Booking API Client (browser + server)
[](https://slack.pulumi.com) [](https://www.npmjs.com/package/@pulumi/docker-build) [.
Docker dictionary for cspell.
Start building travel apps with liteAPI. Instantly access millions of hotels to build new or existing apps and platforms.
React runtime package for Voyant booking requirements. Provides the shared provider, typed fetch client, query keys, constants, and TanStack Query hooks that power booking-requirements-focused frontend experiences.
[@Redocly](https://redocly.com) CLI is your all-in-one API documentation utility. It builds, manages, improves, and quality-checks your API descriptions, all of which comes in handy for various phases of the API Lifecycle. Create your own rulesets to make
Booking requirements module for Voyant. Intake requirements, questions, and answers — the declarative layer that captures what data a product needs at booking time (dietary, passport, pickup, etc.).
Framework-agnostic TypeScript client for custom Voyant storefronts.
React runtime package for Voyant booking requirements. Provides the shared provider, typed fetch client, query keys, constants, and TanStack Query hooks that power booking-requirements-focused frontend experiences.
app-builder precompiled binaries
Catalog plane foundation for Voyant. The shared cross-cutting infrastructure that vertical modules — `products`, `cruises`, `accommodations`, `charters`, `extras` — adopt to participate in a normalized discovery / overlay / snapshot / search surface.
Online booking frontend
A simple app to provision Tomcat apps with Docker written for The Docker Book - http://www.dockerbook.com
A simple app to provision Tomcat apps with Docker written for The Docker Book - http://www.dockerbook.com
# Squash Migrations Periodically squash migrations to reduce overhead of the `db:migrate` Rake task. ## Creating a release 1. Create a new pull request that: - Bumps the version in `rails-squash-migrations.gemspec` - Updates `CHANGELOG.md` to include all noteworthy changes, the release version, and the release date. 2. After the pull request lands, checkout the most up to date `main` branch and build the gem: ```console $ docker run --rm -it -v $(pwd):$(pwd) -w $(pwd) ruby gem build ``` 3. Publish the gem: ```console $ docker run --rm -it -v $(pwd):$(pwd) -w $(pwd) ruby gem push rails-squash-migrations-X.Y.Z.gem ``` 4. Create and publish a git tag: ```console $ git tag X.Y.Z $ git push https://github.com/Pioneer-Valley-Books/rails-squash-migrations.git X.Y.Z ```