Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 802 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 802 Bytes

boxfile

This is a tool for applying Boxfile specifics to your project. A Boxfile is a configuration file for a Freistilbox site.

Installation

The tool can be installed via Composer.

composer require derhasi/boxfile

Command

Creating symlinks for environment specific paths.

./vendor/bin/boxfile symlink [env] --boxfile=Boxfile --docroot=docroot

Example boxfile

version: 1.0
shared_folders:
  - sites/default/files
env_specific_files:
  .htaccess:
    local: .htaccess.local
    staging: .htaccess.stage
  sites/default/settings.php:
    local: settings.local.php
    staging: settings.stage.php

With ./vendor/bin/boxfile local symlinks for the given example will be applied.