darling / ddms
Command line utility designed to aide in development with Roady
Installs: 602
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Type:command-line-utility
Requires
- composer-runtime-api: ^2.2
- darling/php-darling-dev-tools: ^1.0
- darling/php-file-system-paths: ^1.0
- darling/php-text-types: ^1.1
- darling/php-unit-test-utilities: ^1.0
- darling/roady-module-utilities: ^1.0
- erusev/parsedown: ^1.7
- laravel/prompts: ^0.1.16
Requires (Dev)
- dev-rig
- v2.0.0-alpha-13
- v2.0.0-alpha-12
- v2.0.0-alpha-11
- v2.0.0-alpha-10
- v2.0.0-alpha-9
- v2.0.0-alpha-8
- v2.0.0-alpha-7
- v2.0.0-alpha-6
- v2.0.0-alpha-5
- v2.0.0-alpha-4
- v2.0.0-alpha-3
- v2.0.0-alpha-2
- v2.0.0-alpha-1
- v1.7.5
- v1.7.4
- v1.7.3
- v1.7.2
- v1.7.1
- v1.7.0
- v1.6.9
- v1.6.8
- v1.6.7
- v1.6.6
- v1.6.5
- v1.6.4
- v1.6.3
- v1.6.2
- v1.6.1
- v1.6.0
- v1.5.9
- v1.5.8
- v1.5.7
- v1.5.6
- v1.5.5
- v1.5.4
- v1.5.3
- v1.5.2
- v1.5.1
- v1.5.0
- v1.4.9
- v1.4.8
- v1.4.7
- v1.4.6
- v1.4.5
- v1.4.4
- v1.4.3
- v1.4.2
- v1.4.1
- v1.4.0
- v1.3.9
- v1.3.8
- v1.3.7
- v1.3.6
- v1.3.5
- v1.3.4
- v1.3.3
- v1.3.2
- v1.3.1
- v1.3.0
- v1.2.9
- v1.2.8
- v1.2.7
- v1.2.6
- v1.2.5
- v1.2.4
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2.0
- v1.1.9
- v1.1.8
- v1.1.7
- v1.1.6
- v1.1.5
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v0.1.8-alpha
- v0.1.7-alpha
- v0.1.6-alpha
- v0.1.5-alpha
- v0.1.4-alpha
- v0.1.3-alpha
- v0.1.2-alpha
- v0.1.1-alpha
- v0.1.0-alpha
- v0.0.9-beta
- v0.0.9-alpha
- v0.0.8-beta
- v0.0.8-alpha
- v0.0.7-beta
- v0.0.7-alpha
- v0.0.6-beta
- v0.0.6-alpha
- v0.0.5-beta
- v0.0.5-alpha
- v0.0.4-beta
- v0.0.4-alpha
- v0.0.3-beta
- v0.0.3-alpha
- v0.0.2-beta
- v0.0.2-alpha
- v0.0.1-beta
- v0.0.1-alpha
- v0.0.0-beta
- v0.0.0-alpha
- dev-Rig1715746398
This package is auto-updated.
Last update: 2024-06-11 17:40:19 UTC
README
____ _ | _ \(_) ____ | |_) | |/ _` | | _ <| | (_| | |_| \_\_|\__, | |___/
rig is a command line utility designed to aide in development with the Roady php framework.
Installation
rig
can be installed via one of the following installation methods:
Install via composer
:
composer require darling/rig
Note: If rig
is installed via composer
, then the rig
, rig.php
,
and setupRig.sh
scripts will be available in vendor/bin
.
Install via git
:
git clone https://github.com/sevidmusic/rig
After installing rig
, it is helpful to create a symlink to rig
in ~/.local/bin
.
To make this easier, rig
provides a setupRig.sh
script that will
do just that.
If rig
was installed with composer require darling/rig
,
run the setup script in vendor/bin
:
./vendor/bin/setupRig.sh
If rig
was installed with git clone
, run the setup script in
rig
's root directory:
./setupRig.sh
Note:
setupRig.sh
will not overwrite an existing rig
symlink by default.
To force setupRig.sh
to overwrite an existing rig
symlink use
the --force
flag:
# For composer installation
./vendor/bin/setupRig.sh --force
# For git installation
./setupRig.sh --force
Getting Started
To make sure rig is is installed and callable, run the following command:
rig --version
If that worked, then rig
is installed properly.
Creating a Module
rig
can be used to create new Module for a Roady
project.
For example, to create a Module named hello-world
run the
following command:
rig --new-module \
--module-name "hello-world"
This will create a Module named hello-world
in the current
Roady
project's modules
directory.
modules/hello-world
It will also create the following files:
modules/hello-world/output/hello-world.html
modules/hello-world/localhost.8080.json
To use this Module, start a development server on localhost:8080
via rig --start-servers --open-in-browser
.
Note: If localhost:8080 does not open in a browser automatically, then manually open a web browser and navigate to localhost:8080.
If everything is working then the new module's output,
Hello hello-world
, should be displayed in the browser.
Additional Documentation
Documentation relevant to rig
's individual commands can be
found below.
More thorough documentation about using rig
with Roady
to build
websites can be found in Roady's
README.md
.
Commands
- --help
- --delete-route
- --list-routes
- --new-module
- --new-route
- --start-servers
- --update-route
- --version
- --view-action-log
rig --help
Display documentation about rig
, or one of rig
's commands.
Arguments:
[TOPIC]
Examples:
rig --help
rig --help about
rig --help delete-route
rig --help getting-started
rig --help help
rig --help installation
rig --help list-routes
rig --help new-module
rig --help new-route
rig --help start-servers
rig --help update-route
rig --help version
rig --help view-action-log
rig --help view-readme
rig --delete-route
Delete the Route that is assigned the specified Route hash.
Note: Route hashes are displayed in the output of rig --list-routes
.
Arguments:
--path-to-roady-project The path to the relevant Roady project's
root directory.
Defaults to current directory: ./
--route-hash The hash of the Route to delete.
Examples:
rig --delete-route \ --route-hash "016bbd46d3a3fc25c" rig --delete-route \ --path-to-roady-project "./" \ --route-hash "6591c3e1ed38ed5eb"
rig --list-routes
List the Routes configured by existing Modules.
Note: If no arguments are specified, all of the Routes defined by all existing Modules will be included in the list.
Arguments:
--defined-for-authorities If specified, only list Routes
that are defined for one of the
specified Authorities.
--defined-for-modules If specified, only list Routes
that are defined by one of the
specified Modules.
--defined-for-requests If specified, only list the
Routes that respond to one of
the specified Requests.
--defined-for-named-positions If specified, only list Routes that
are defined for one of the specified
Named Positions.
--defined-for-positions If specified, only list Routes
that are defined for one of the
specified Positions.
--defined-for-files If specified, only list Routes that
are defined for one of the specified
files.
--path-to-roady-project The path to the relevant Roady project's
root directory.
Defaults to current directory: ./
Examples:
rig --list-routes rig --list-routes --defined-for-modules "hello-world" "hello-universe" rig --list-routes --defined-for-requests "homepage" "global" rig --list-routes --defined-for-named-positions "roady-ui-header" rig --list-routes --defined-for-positions "0" "3" rig --list-routes --defined-for-files "homepage.html" "global.css"
It is also possible to specify multiple arguments to further filter the results.
rig --list-routes \ --defined-for-modules "hello-world" "hello-universe" \ --defined-for-requests "homepage" "global" \ --defined-for-named-positions "roady-ui-header" \ --defined-for-positions "0" "3" \ --defined-for-files "homepage.html" "global.css"
The output of rig --list-routes
will look something like:
# Routes ┌───────────────────┬─────────────────────────────────────────────────────┐ │ route-hash: │ 016bbd46d3a3fc25c │ ├───────────────────┼─────────────────────────────────────────────────────┤ │ defined-by-module │ hello-world │ │ responds-to │ homepage │ │ named-positions │ [{"position-name":"roady-ui-footer","position":10}] │ │ relative-path │ output/hello-world.html │ └───────────────────┴─────────────────────────────────────────────────────┘ ┌───────────────────┬────────────────────────────────────────────────────┐ │ route-hash: │ 6591c3e1ed38ed5eb │ ├───────────────────┼────────────────────────────────────────────────────┤ │ defined-by-module │ hello-world │ │ responds-to │ hello-universe, hello-world, homepage │ │ named-positions │ [{"position-name":"roady-ui-header","position":3}] │ │ relative-path │ output/header.html │ └───────────────────┴────────────────────────────────────────────────────┘
rig --new-module
Create a new Module in the current Roady project's modules
directory.
If the --no-boilerplate
flag is not specified,
the following initial files and directories
will be created for the new Module.
Note: The name NEW_MODULE_NAME
will be replaced
by the new Module's actual name.
localhost.8080.json
output/NEW_MODULE_NAME.html
The content of the initial files created for the new Module will be:
output/NEW_MODULE_NAME.html
<p>Hello NEW_MODULE_NAME</p>
-
localhost.8080.json
Note: The string
NEW_MODULE_NAME
in the examplejson
will be replaced by the new Module's actual name.
[ { "module-name": "NEW_MODULE_NAME", "responds-to": [ "homepage" ], "named-positions": [ { "position-name": "roady-ui-main-content", "position": 0 } ], "relative-path": "output\/NEW_MODULE_NAME.html" } ]
Arguments:
--for-authority If specified, create an initial Route
configuration file for the specified
domain authority.
Note: If the --for-authority flag is
not specified then an initial Route
configuration file will be created
for the authority:
localhost:8000
Note: If the --no-boilerplate flag is
specified and the --for-authority flag
is not specified then an initial Route
configuration file will not be created.
--no-boilerplate If specified, do not create any
initial files and directories for
the new Module.
--module-name The name to assign to the new Module.
--path-to-roady-project The path to the relevant Roady project's
root directory.
Defaults to current directory: ./
Examples:
rig --new-module \ --module-name hello-world rig --new-module \ --module-name hello-universe \ --for-authority "www.example.com" rig --new-module \ --module-name hello-multiverse \ --for-authority "localhost:8888" \ --no-boilerplate \ --path-to-roady-project "./"
rig --new-route
Define a new Route for an existing Module.
Arguments:
--module-name The name of the Module to define the new
Route for.
--named-positions A json string that represents an array
of arrays of named positons.
For example:
[{"position-name":"roady-ui-footer","position":10}]
--path-to-roady-project The path to the relevant Roady project's
root directory.
Defaults to current directory: ./
--relative-path The path to the file served by the Route,
relative to the Module's root directory.
--responds-to The names of the Requests the Route will
respond to.
Examples:
rig --new-route \ --module-name "hello-world" \ --named-positions '[{"position-name":"roady-ui-footer","position":10}]' \ --relative-path "output/hello-world.html" \ --responds-to "homepage" "hello-world"
rig --start-servers
Start up one or more local servers on the specified ports.
If no ports are specified then start a local server on port 8080
.
The servers will be available at localhost:PORT
, for example,
rig --start-server 8888
would start a local server that would be
accsessible at localhost:8888.
Arguments:
--ports The ports to start servers on.
--open-in-browser If specified, attempt to automatically open
the running servers in a browser.
Examples:
# start server on localhost:8080 rig --start-servers # start server on localhost:8888 and localhost:8017 rig --start-servers --ports 8888 8017 # start server on localhost:8420 and open it in a browser rig --start-servers --ports 8420 --open-in-browser
rig --update-route
Update the Route that is assigned the specified Route hash using the specified criteria.
Note: Route hashes are displayed in the table produced by
rig --list-routes
.
Arguments:
--module-name The name of the Module the Route is
defined for.
--named-positions A json string that represents an array
of arrays of named positons.
For example:
[{"position-name":"roady-ui-footer","position":10}]
--path-to-roady-project The path to the relevant Roady project's
root directory.
Defaults to current directory: ./
--relative-path The path to the file served by the Route,
relative to the Module's root directory.
--responds-to The names of the additional Requests
the Route will respond to.
--route-hash The hash of the Route to update.
Examples:
rig --update-route \ --module-name "hello-world" \ --named-positions '[{"position-name":"roady-ui-footer","position":10}]' \ --relative-path "output/hello-world.html" \ --responds-to "homepage" "hello-world"
rig --version
Display rig's version.
Note: If rig
is not up to date, a warning message will be shown.
Examples:
rig --version
rig --view-action-log
View the log of Actions that have been taken by the commands run by rig.
Examples:
rig --view-action-log