Laraboot/Cli
CommunityExtendig
1.0.0
1.0.0
  • Introduction
  • Requirements
  • Getting started
  • F.A.Q
  • Concepts
    • Workspace
    • laraboot.json
    • Build tasks
      • Core tasks
      • Community tasks
  • Usage
    • Create a project
    • Configure
      • Data model
      • Configure
      • Starter kits
      • Views and layouts
    • Build your project
    • Run your project
    • Share your project
  • Build
    • Process
    • Hooks
  • Tutorials
    • Create a laraboot application
    • Collaborative
  • Extending
    • Create a build task
    • Github actions
    • Publish a build task
Powered by GitBook
On this page
  • Install
  • Configure

Was this helpful?

  1. Usage
  2. Configure

Configure

Modify configuration files

Install

laraboot task add @core/laravel-config --format=file -vvv && \

Configure

This functionality is provided by core task @core/laravel-configand hence it must be enabled before using it.

laraboot config set <key> <value> [e]

Where key is the location of the file to edit relative to the root of the project. Without extensions. Plus a single slash followed by the config path to edit.

For instance, if we wanted to change the application name (configured in config/app.php) we could do it like this:

laraboot config set config.app/name App -e APP_NAME
PreviousData modelNextStarter kits

Last updated 3 years ago

Was this helpful?