setup
Setup wizard for TastyIgniter
File Explorer
- build-release.yml
- app.css
- fa-brands-400.eot
- fa-brands-400.svg
- fa-brands-400.ttf
- fa-brands-400.woff
- fa-brands-400.woff2
- fa-regular-400.eot
- fa-regular-400.svg
- fa-regular-400.ttf
- fa-regular-400.woff
- fa-regular-400.woff2
- fa-solid-900.eot
- fa-solid-900.svg
- fa-solid-900.ttf
- fa-solid-900.woff
- fa-solid-900.woff2
- logo.svg
- app.js
- app.css
- waterfall.min.js
- app.js
- bootstrap.min.js.map
- installer.js
- mustache.js
- setup.js
- toast.js
- _+import.components.scss
- _alert.scss
- _wizard.scss
- _variables.scss
- _utilities.scss
- _+import.vendor.scss
- _bootstrap-helpers.scss
- _bootstrap-partials.scss
- animate.scss
- app.scss
- mix-manifest.json
- package-lock.json
- package.json
- vite.config.js
- webpack.mix.js
- ArtisanRunner.php
- EnvWriter.php
- ReleaseDownloader.php
- RequirementChecker.php
- SetupController.php
- SetupException.php
- SetupPDO.php
- SetupRepository.php
- default.php
- _sidebar.php
- complete.php
- database.php
- install.php
- start.php
- bootstrap.php
- .editorconfig
- .gitignore
- LICENSE.txt
- README.md
- setup.php
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
openssl
View Details ▼
openssl
OpenSSL cryptographic toolkit.
Some subcommands such as `req` have their own usage documentation.
openssl genpkey -algorithm {{rsa|ec}} -out {{path/to/private.key}} -aes256
Generate a private key and encrypt the output file using AES-256:
openssl rsa -in {{path/to/private.key}} -pubout -out {{path/to/public.key}}
Generate the corresponding public key from the private key `private.key` using `rsa`:
openssl req -new -x509 -key {{path/to/private.key}} -out {{path/to/certificate.crt}} -days 365
Generate a self-signed certificate valid for a specified number of days (365):
xml
View Details ▼
xml
XMLStarlet Toolkit: query, edit, check, convert, and transform XML documents.
Some subcommands such as `validate` have their own usage documentation.
xml --help
Display general help, including the list of subcommands:
xml {{subcommand}} {{options}} {{path/to/input.xml|uri}}
Execute a subcommand with input from a file or URI, printing to `stdout`:
xml {{subcommand}} {{options}}
Execute a subcommand using `stdin` and `stdout`:
exif
View Details ▼
exif
Show and change EXIF information in JPEG files.
exif {{path/to/image.jpg}}
Show all recognized EXIF information in an image:
exif {{[-l|--list-tags]}} --no-fixup {{path/to/image.jpg}}
Show a table listing known EXIF tags and whether each one exists in an image:
exif {{[-e|--extract-thumbnail]}} {{[-o|--output]}} {{path/to/thumbnail.jpg}} {{path/to/image.jpg}}
Extract the image thumbnail into a separate file:
